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