mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00: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;
|