2023-11-01 08:12:51 +00:00
|
|
|
import React from "react";
|
2023-02-08 04:43:07 +00:00
|
|
|
|
2022-12-20 10:35:21 +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";
|
2022-12-20 10:35:21 +00:00
|
|
|
// components
|
2023-11-01 08:12:51 +00:00
|
|
|
import { ProjectSettingsLabelList } from "components/labels";
|
2023-10-18 13:47:02 +00:00
|
|
|
import { ProjectSettingHeader } from "components/headers";
|
2022-12-20 10:35:21 +00:00
|
|
|
// types
|
2023-05-05 11:37:29 +00:00
|
|
|
import type { NextPage } from "next";
|
2023-10-25 10:18:57 +00:00
|
|
|
|
2023-11-01 08:12:51 +00:00
|
|
|
const LabelsSettings: NextPage = () => (
|
|
|
|
<AppLayout withProjectWrapper header={<ProjectSettingHeader title="Labels Settings" />}>
|
|
|
|
<ProjectSettingLayout>
|
|
|
|
<div className="pr-9 py-8 gap-10 w-full overflow-y-auto">
|
|
|
|
<ProjectSettingsLabelList />
|
|
|
|
</div>
|
|
|
|
</ProjectSettingLayout>
|
|
|
|
</AppLayout>
|
|
|
|
);
|
2022-12-06 14:38:28 +00:00
|
|
|
|
|
|
|
export default LabelsSettings;
|