mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
2d64caef90
* refactor: project setting estimate * refactor: project setting label * refactor: project setting state * refactor: project setting integration * refactor: project settings member * fix: estimate not updating * fix: estimate not in observable * fix: build error
22 lines
680 B
TypeScript
22 lines
680 B
TypeScript
import React from "react";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { ProjectSettingLayout } from "layouts/setting-layout";
|
|
// components
|
|
import { ProjectSettingHeader } from "components/headers";
|
|
import { EstimatesList } from "components/estimates/estimate-list";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
|
|
const EstimatesSettings: NextPage = () => (
|
|
<AppLayout header={<ProjectSettingHeader title="Estimates Settings" />} withProjectWrapper>
|
|
<ProjectSettingLayout>
|
|
<div className="pr-9 py-8 w-full overflow-y-auto">
|
|
<EstimatesList />
|
|
</div>
|
|
</ProjectSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
|
|
export default EstimatesSettings;
|