forked from github/plane
5916d6e749
* fix: cycle and module sidebar scroll * style: date picker theming * style: workspace slug spacing * fix: app sidebar z-index * fix: favorite cycle mutation * fix: cycle modal on error close * feat: cycle view context * style: active cycle stats scroll * fix: active cycle favorite mutation * feat: import export banner * feat: cycle sidebar date picker logic updated * fix: NaN in progress percentage fix * fix: tooltip fix * style: empty state for active cycle * style: cycle badge width fix , all cycle empty state fix and cycle icon size fix
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { useRouter } from "next/router";
|
|
|
|
// layouts
|
|
import { WorkspaceAuthorizationLayout } from "layouts/auth-layout";
|
|
import { SettingsHeader } from "components/workspace";
|
|
// components
|
|
import IntegrationGuide from "components/integration/guide";
|
|
// ui
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
import { IntegrationAndImportExportBanner } from "components/ui";
|
|
|
|
const ImportExport: NextPage = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
return (
|
|
<WorkspaceAuthorizationLayout
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem title={`${workspaceSlug ?? "Workspace"}`} link={`/${workspaceSlug}`} />
|
|
<BreadcrumbItem title="Import/ Export Settings" />
|
|
</Breadcrumbs>
|
|
}
|
|
>
|
|
<div className="p-8 space-y-4">
|
|
<SettingsHeader />
|
|
<IntegrationAndImportExportBanner bannerName="Import/ Export" />
|
|
<IntegrationGuide />
|
|
</div>
|
|
</WorkspaceAuthorizationLayout>
|
|
);
|
|
};
|
|
|
|
export default ImportExport;
|