import { Pressable, Text, View } from 'react-native'; import { SafeAreaView } from 'react-native-safe-area-context'; import { useAuthStore } from '@/stores/auth-store'; import type { RootStackScreenProps } from '@/navigation/types'; export function AccountScreen({ navigation }: RootStackScreenProps<'Account'>) { const user = useAuthStore((s) => s.user); return ( navigation.goBack()} className="px-2 py-1"> Account ); } function Field({ label, value }: { label: string; value: string }) { return ( {label} {value} ); }