umami/pages/settings/profile/index.js

11 lines
272 B
JavaScript
Raw Normal View History

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