import styles from '@/styles/screens/reserva/detail.styles'; import { Text, View } from 'react-native'; type Props = { label: string; value?: string | null; }; export function FieldBox({ label, value }: Props) { return ( {label} {value || '---'} ); }