mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
8ee5ba96ce
* chore: workspace active cycles
* fix: active cycles tab implementation
* chore: added distribution graph for active cycles
* chore: removed distribution graph and issues
* Revert "chore: removed issues"
This reverts commit 7d977ac8b0
.
* chore: workspace active cycles implementation
* chore: code refactor
---------
Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
17 lines
597 B
TypeScript
17 lines
597 B
TypeScript
import { ReactElement } from "react";
|
|
// components
|
|
import { WorkspaceActiveCyclesList } from "components/workspace";
|
|
import { WorkspaceActiveCycleHeader } from "components/headers";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
|
|
const WorkspaceActiveCyclesPage: NextPageWithLayout = () => <WorkspaceActiveCyclesList />;
|
|
|
|
WorkspaceActiveCyclesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <AppLayout header={<WorkspaceActiveCycleHeader />}>{page}</AppLayout>;
|
|
};
|
|
|
|
export default WorkspaceActiveCyclesPage;
|