2023-11-01 08:12:51 +00:00
|
|
|
import React from "react";
|
2023-04-06 09:39:24 +00:00
|
|
|
// layouts
|
2023-10-25 10:18:57 +00:00
|
|
|
import { AppLayout } from "layouts/app-layout";
|
2023-11-01 08:15:04 +00:00
|
|
|
import { ProjectSettingLayout } from "layouts/settings-layout";
|
2023-04-06 09:39:24 +00:00
|
|
|
// components
|
2023-10-18 13:47:02 +00:00
|
|
|
import { ProjectSettingHeader } from "components/headers";
|
2023-11-01 08:12:51 +00:00
|
|
|
import { EstimatesList } from "components/estimates/estimate-list";
|
2023-04-06 09:39:24 +00:00
|
|
|
// types
|
2023-04-08 08:16:46 +00:00
|
|
|
import type { NextPage } from "next";
|
2023-04-11 12:24:01 +00:00
|
|
|
|
2023-11-01 08:12:51 +00:00
|
|
|
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>
|
|
|
|
);
|
2023-04-06 09:39:24 +00:00
|
|
|
|
|
|
|
export default EstimatesSettings;
|