mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
16 lines
449 B
TypeScript
16 lines
449 B
TypeScript
'use client';
|
|
import { ProfileSettings } from './ProfileSettings';
|
|
import { useMessages } from '@/components/hooks';
|
|
import { SectionHeader } from '@/components/common/SectionHeader';
|
|
import { Column } from '@umami/react-zen';
|
|
|
|
export function ProfilePage() {
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
return (
|
|
<Column gap>
|
|
<SectionHeader title={formatMessage(labels.profile)} />
|
|
<ProfileSettings />
|
|
</Column>
|
|
);
|
|
}
|