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