import { ProfileDeleteAccountButton, ProfileDetailsForm, ProfileEditImage, ProfileHeader, ProfilePasswordForm, } from '@/components' import { Box, ScrollView, Spacer } from '@/design-system' import { useTranslation, useScreenOptions } from '@/hooks' export const ProfileScreen = () => { const { t } = useTranslation() useScreenOptions({ title: t('navigation.screen_titles.profile'), }) return ( ) }