mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3c884fd46e
* fix: implementing layouts in all pages * fix: layout fixes, implemting using standard nextjs parctice
25 lines
632 B
TypeScript
25 lines
632 B
TypeScript
import { ReactElement } from "react";
|
|
// components
|
|
import { ProjectLayoutRoot } from "components/issues";
|
|
import { ProjectIssuesHeader } from "components/headers";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
|
|
const ProjectIssuesPage: NextPageWithLayout = () => (
|
|
<div className="h-full w-full">
|
|
<ProjectLayoutRoot />
|
|
</div>
|
|
);
|
|
|
|
ProjectIssuesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectIssuesHeader />} withProjectWrapper>
|
|
{page}
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default ProjectIssuesPage;
|