mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
af8804eb12
* refactor: remove estimates from project store * chore: update all the instances of the old store * chore: update store declaration structure
26 lines
796 B
TypeScript
26 lines
796 B
TypeScript
import { ReactElement } from "react";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { ProjectSettingLayout } from "layouts/settings-layout";
|
|
// components
|
|
import { ProjectSettingHeader } from "components/headers";
|
|
import { EstimatesList } from "components/estimates";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const EstimatesSettingsPage: NextPageWithLayout = () => (
|
|
<div className="pr-9 py-8 w-full overflow-y-auto">
|
|
<EstimatesList />
|
|
</div>
|
|
);
|
|
|
|
EstimatesSettingsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectSettingHeader title="Estimates Settings" />} withProjectWrapper>
|
|
<ProjectSettingLayout>{page}</ProjectSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default EstimatesSettingsPage;
|