2026-04-30 14:05:44 +03:30
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import Link from 'next/link';
|
|
|
|
|
import { OrganizationSelectorContent } from '@/components/ui/organization/OrganizationSelectorContent';
|
|
|
|
|
|
|
|
|
|
export default function DashboardOrganizationsSettingsPage() {
|
|
|
|
|
return (
|
2026-04-30 18:15:40 +03:30
|
|
|
<div className="space-y-6">
|
2026-04-30 14:05:44 +03:30
|
|
|
<div>
|
|
|
|
|
<Link
|
|
|
|
|
href="/today"
|
|
|
|
|
className="text-sm text-primary hover:opacity-90"
|
|
|
|
|
>
|
|
|
|
|
← Back to app
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
<OrganizationSelectorContent />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|