mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
16 lines
539 B
JavaScript
16 lines
539 B
JavaScript
import AppLayout from 'components/layout/AppLayout';
|
|
import SettingsLayout from 'components/layout/SettingsLayout';
|
|
import ProfileSettings from 'components/pages/settings/profile/ProfileSettings';
|
|
import useMessages from 'hooks/useMessages';
|
|
|
|
export default function ProfilePage() {
|
|
const { formatMessage, labels } = useMessages();
|
|
return (
|
|
<AppLayout title={`${formatMessage(labels.settings)} - ${formatMessage(labels.profile)}`}>
|
|
<SettingsLayout>
|
|
<ProfileSettings />
|
|
</SettingsLayout>
|
|
</AppLayout>
|
|
);
|
|
}
|