|
import SettingsLayout from 'components/layout/SettingsLayout';
|
|
import ProfileSettings from 'components/pages/settings/profile/ProfileSettings';
|
|
|
|
export default function ProfilePage() {
|
|
return (
|
|
<SettingsLayout>
|
|
<ProfileSettings />
|
|
</SettingsLayout>
|
|
);
|
|
}
|