aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/settings/profile/ProfileHeader.tsx
blob: 05f7996370f0692e80faf765103185d1cd69637f (plain) (blame)
1
2
3
4
5
6
7
8
import { SectionHeader } from '@/components/common/SectionHeader';
import { useMessages } from '@/components/hooks';

export function ProfileHeader() {
  const { formatMessage, labels } = useMessages();

  return <SectionHeader title={formatMessage(labels.profile)}></SectionHeader>;
}