2026-04-23 15:33:11 +03:30
|
|
|
'use client';
|
|
|
|
|
|
2026-05-17 00:02:13 +03:30
|
|
|
import { OrganizationSelectorContent } from '@/components/ui/organizations/OrganizationSelectorContent';
|
2026-04-23 15:33:11 +03:30
|
|
|
|
|
|
|
|
export default function SelectOrganizationPage() {
|
|
|
|
|
return (
|
2026-04-29 20:19:40 +03:30
|
|
|
<div className="min-h-screen app-web-bg p-4 sm:p-8">
|
|
|
|
|
<div className="max-w-3xl mx-auto">
|
2026-04-30 14:05:44 +03:30
|
|
|
<OrganizationSelectorContent />
|
2026-04-23 15:33:11 +03:30
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|