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