/** * Sample React Native App * https://github.com/facebook/react-native * * Generated with the TypeScript template * https://github.com/react-native-community/react-native-template-typescript * * @format */ import React, {type FC, type PropsWithChildren} from 'react'; import {StyleSheet, Text, useColorScheme, View} from 'react-native'; import {Colors} from 'react-native/Libraries/NewAppScreen'; export const Section: FC< PropsWithChildren<{ title: string; }> > = ({children, title}) => { const isDarkMode = useColorScheme() === 'dark'; return ( {title} {children} ); }; const styles = StyleSheet.create({ sectionContainer: { marginTop: 32, paddingHorizontal: 24, }, sectionTitle: { fontSize: 24, fontWeight: '600', }, sectionDescription: { marginTop: 8, fontSize: 18, fontWeight: '400', }, });