mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
25 lines
880 B
TypeScript
25 lines
880 B
TypeScript
import { ReactElement } from "react";
|
|
// components
|
|
import { GlobalViewsHeader } from "components/workspace";
|
|
import { GlobalIssuesHeader } from "components/headers";
|
|
import { AllIssueLayoutRoot } from "components/issues";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const GlobalViewCreatedIssuesPage: NextPageWithLayout = () => (
|
|
<div className="h-full overflow-hidden bg-custom-background-100">
|
|
<div className="flex h-full w-full flex-col border-b border-custom-border-300">
|
|
<GlobalViewsHeader />
|
|
<AllIssueLayoutRoot type="created" />
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
GlobalViewCreatedIssuesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <AppLayout header={<GlobalIssuesHeader activeLayout="spreadsheet" />}>{page}</AppLayout>;
|
|
};
|
|
|
|
export default GlobalViewCreatedIssuesPage;
|