mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
14 lines
364 B
JavaScript
14 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>
|
|
);
|
|
}
|