mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
13 lines
364 B
JavaScript
13 lines
364 B
JavaScript
import AppLayout from 'components/layout/AppLayout';
|
|
import SettingsLayout from 'components/layout/SettingsLayout';
|
|
import ProfileSettings from 'components/pages/settings/profile/ProfileSettings';
|
|
|
|
export default function ProfilePage() {
|
|
return (
|
|
<AppLayout>
|
|
<SettingsLayout>
|
|
<ProfileSettings />
|
|
</SettingsLayout>
|
|
</AppLayout>
|
|
);
|
|
}
|