mirror of
https://github.com/makeplane/plane.git
synced 2026-06-14 03:30:00 +00:00
02d0ee3e0f
* feat: adding new copyright info on all files * chore: adding CI
31 lines
895 B
TypeScript
31 lines
895 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { observer } from "mobx-react";
|
|
// components
|
|
import { PageWrapper } from "@/components/common/page-wrapper";
|
|
// types
|
|
import type { Route } from "./+types/page";
|
|
// local
|
|
import { WorkspaceCreateForm } from "./form";
|
|
|
|
const WorkspaceCreatePage = observer(function WorkspaceCreatePage(_props: Route.ComponentProps) {
|
|
return (
|
|
<PageWrapper
|
|
header={{
|
|
title: "Create a new workspace on this instance.",
|
|
description: "You will need to invite users from Workspace Settings after you create this workspace.",
|
|
}}
|
|
>
|
|
<WorkspaceCreateForm />
|
|
</PageWrapper>
|
|
);
|
|
});
|
|
|
|
export const meta: Route.MetaFunction = () => [{ title: "Create Workspace - God Mode" }];
|
|
|
|
export default WorkspaceCreatePage;
|