Files
eventify_command_center/src/pages/Settings.tsx

11 lines
253 B
TypeScript
Raw Normal View History

2026-02-03 07:42:20 +00:00
import { AppLayout } from '@/components/layout/AppLayout';
import { SettingsLayout } from '@/features/settings/components/SettingsLayout';
2026-02-03 07:42:20 +00:00
export default function Settings() {
return (
<AppLayout>
<SettingsLayout />
2026-02-03 07:42:20 +00:00
</AppLayout>
);
}