forked from github/plane
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
885 B
TypeScript
25 lines
885 B
TypeScript
import { ReactElement } from "react";
|
|
// components
|
|
import { GlobalViewsHeader } from "components/workspace";
|
|
import { GlobalIssuesHeader } from "components/headers";
|
|
import { AllIssueLayoutRoot } from "components/issues/issue-layouts";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const GlobalViewAllIssuesPage: 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="all-issues" />
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
GlobalViewAllIssuesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <AppLayout header={<GlobalIssuesHeader activeLayout="spreadsheet" />}>{page}</AppLayout>;
|
|
};
|
|
|
|
export default GlobalViewAllIssuesPage;
|