forked from github/plane
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
23 lines
684 B
TypeScript
23 lines
684 B
TypeScript
import React from "react";
|
|
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { ProjectSettingLayout } from "layouts/setting-layout";
|
|
// components
|
|
import { ProjectSettingsLabelList } from "components/labels";
|
|
import { ProjectSettingHeader } from "components/headers";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
|
|
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>
|
|
);
|
|
|
|
export default LabelsSettings;
|