forked from github/plane
21988e8528
* fix: double layout in exports * fix: typo in jira email address section * fix: workspace members not mutating * fix: removed un-used variable * fix: workspace members can't be filtered using email * fix: autocomplete in workspace delete * fix: autocomplete in project delete modal * fix: update member function in store * fix: sidebar link not active when in github/jira * style: margin top & icon inconsistency * fix: typo in create workspace * fix: workspace leave flow * fix: redirection to delete issue * fix: autocomplete off in jira api token * refactor: reduced api call, added optional chaining & removed variable with low scope
29 lines
897 B
TypeScript
29 lines
897 B
TypeScript
import { ReactElement } from "react";
|
|
// layout
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { WorkspaceSettingLayout } from "layouts/settings-layout";
|
|
// components
|
|
import { WorkspaceSettingHeader } from "components/headers";
|
|
import ExportGuide from "components/exporter/guide";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const ExportsPage: NextPageWithLayout = () => (
|
|
<div className="pr-9 py-8 w-full overflow-y-auto">
|
|
<div className="flex items-center py-3.5 border-b border-custom-border-100">
|
|
<h3 className="text-xl font-medium">Exports</h3>
|
|
</div>
|
|
<ExportGuide />
|
|
</div>
|
|
);
|
|
|
|
ExportsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<WorkspaceSettingHeader title="Export Settings" />}>
|
|
<WorkspaceSettingLayout>{page}</WorkspaceSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default ExportsPage;
|