umami/pages/settings/profile/index.js

14 lines
364 B
JavaScript
Raw Normal View History

2023-03-24 18:55:20 +01:00
import AppLayout from 'components/layout/AppLayout';
2023-03-24 00:33:10 +01:00
import SettingsLayout from 'components/layout/SettingsLayout';
2023-01-10 08:59:26 +01:00
import ProfileSettings from 'components/pages/settings/profile/ProfileSettings';
export default function ProfilePage() {
return (
2023-03-24 18:55:20 +01:00
<AppLayout>
<SettingsLayout>
<ProfileSettings />
</SettingsLayout>
</AppLayout>
2023-01-10 08:59:26 +01:00
);
}