import {PropsWithChildren} from 'react'; import {Dimensions, StyleSheet, Text, View} from 'react-native'; import {Colors} from 'react-native/Libraries/NewAppScreen'; import {styles} from './styles'; type SectionProps = PropsWithChildren<{ title: string; }>; export function Section({children, title}: SectionProps): React.JSX.Element { return ( {title} {children} ); }