import { View } from 'react-native'; import { BoldText, RegularText } from '../ui/Text'; type Props = { title?: React.ReactNode | string; subtitle?: string; children?: React.ReactNode; }; export default function ScreenLayout({ title, subtitle, children }: Props) { return ( {typeof title === 'string' && ( {title} )} {typeof title !== 'string' && title} {subtitle} {children} ); }