21 lines
497 B
TypeScript
21 lines
497 B
TypeScript
'use client';
|
|
|
|
import Link from 'next/link';
|
|
import { OrganizationSelectorContent } from '@/components/ui/organization/OrganizationSelectorContent';
|
|
|
|
export default function DashboardOrganizationsSettingsPage() {
|
|
return (
|
|
<div className="max-w-3xl space-y-6">
|
|
<div>
|
|
<Link
|
|
href="/today"
|
|
className="text-sm text-primary hover:opacity-90"
|
|
>
|
|
← Back to app
|
|
</Link>
|
|
</div>
|
|
<OrganizationSelectorContent />
|
|
</div>
|
|
);
|
|
}
|