* remove WizardLayoutAppDir * refactor organizations/new and add platform/new * refactor organizations/[id]/* * add APP_ROUTER_SETTINGS_ORG_ENABLED * fix type error * fix organizations/new page * remove code not needed and fix type errors * Fix Metadata utils * remove unnecessary code * remove unneeded code * wip * do not remove buildWrappedOnboardTeamMembersPage * fix type error * do not introduce changes to yarn.lock * fix wrong route name * fix onboard members * fix platform pages * fix settings/platform main view * add requiresLicense to WithLayout * refactor * add requiresLicense to platform/new * Add LicenseRequired back to platform/new * add env variable * fix onboard-members --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com>
15 lines
348 B
TypeScript
15 lines
348 B
TypeScript
"use client";
|
|
|
|
import { CreateANewPlatformForm } from "@calcom/features/ee/platform/components/index";
|
|
import { WizardLayout } from "@calcom/ui";
|
|
|
|
export const LayoutWrapper = (page: React.ReactElement) => {
|
|
return (
|
|
<WizardLayout currentStep={1} maxSteps={1}>
|
|
{page}
|
|
</WizardLayout>
|
|
);
|
|
};
|
|
|
|
export default CreateANewPlatformForm;
|