mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
18 lines
464 B
TypeScript
18 lines
464 B
TypeScript
// components
|
|
import { ProjectLayoutRoot } from "components/issues";
|
|
import { ProjectIssuesHeader } from "components/headers";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
|
|
const ProjectIssues: NextPage = () => (
|
|
<AppLayout header={<ProjectIssuesHeader />} withProjectWrapper>
|
|
<div className="h-full w-full">
|
|
<ProjectLayoutRoot />
|
|
</div>
|
|
</AppLayout>
|
|
);
|
|
|
|
export default ProjectIssues;
|