mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
9d9d703c62
Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
17 lines
603 B
TypeScript
17 lines
603 B
TypeScript
import { ReactElement } from "react";
|
|
// components
|
|
import { WorkspaceActiveCycleHeader } from "components/headers";
|
|
import { WorkspaceActiveCyclesUpgrade } from "components/workspace";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
|
|
const WorkspaceActiveCyclesPage: NextPageWithLayout = () => <WorkspaceActiveCyclesUpgrade />;
|
|
|
|
WorkspaceActiveCyclesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <AppLayout header={<WorkspaceActiveCycleHeader />}>{page}</AppLayout>;
|
|
};
|
|
|
|
export default WorkspaceActiveCyclesPage;
|