forked from github/plane
a276bd2301
* dev: global issues store * build-error: all issues render * build-error: build error resolved in global view store
25 lines
844 B
TypeScript
25 lines
844 B
TypeScript
import { ReactElement } from "react";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { GlobalViewsHeader } from "components/workspace";
|
|
import { AllIssueLayoutRoot } from "components/issues";
|
|
import { GlobalIssuesHeader } from "components/headers";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const GlobalViewIssuesPage: NextPageWithLayout = () => (
|
|
<div className="h-full overflow-hidden bg-custom-background-100">
|
|
<div className="h-full w-full flex flex-col border-b border-custom-border-300">
|
|
<GlobalViewsHeader />
|
|
<AllIssueLayoutRoot />
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
GlobalViewIssuesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <AppLayout header={<GlobalIssuesHeader activeLayout="spreadsheet" />}>{page}</AppLayout>;
|
|
};
|
|
|
|
export default GlobalViewIssuesPage;
|