mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 06:25:58 +02:00
17 lines
349 B
TypeScript
17 lines
349 B
TypeScript
|
|
// layouts
|
||
|
|
import { DefaultLayout } from "@/layouts";
|
||
|
|
// components
|
||
|
|
import { PageHeader } from "@/components/core";
|
||
|
|
import { InstanceSignUpForm } from "./components";
|
||
|
|
|
||
|
|
const SetupPage = () => (
|
||
|
|
<>
|
||
|
|
<PageHeader title="Setup - God Mode" />
|
||
|
|
<DefaultLayout>
|
||
|
|
<InstanceSignUpForm />
|
||
|
|
</DefaultLayout>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default SetupPage;
|