mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-02-01 01:13:38 +00:00
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
|
import { OrganizationList } from "@clerk/nextjs";
|
||
|
|
||
|
export default function CreateOrganizationPage() {
|
||
|
return (
|
||
|
<OrganizationList
|
||
|
hidePersonal
|
||
|
afterSelectOrganizationUrl="/organization/:id"
|
||
|
afterCreateOrganizationUrl="/organization/:id"
|
||
|
/>
|
||
|
);
|
||
|
}
|