({children, title})
| 21 | const Section: React.FC<{ |
| 22 | title: string; |
| 23 | }> = ({children, title}) => { |
| 24 | return ( |
| 25 | <View style={styles.sectionContainer}> |
| 26 | <Text style={[styles.sectionTitle]}>{title}</Text> |
| 27 | {children} |
| 28 | </View> |
| 29 | ); |
| 30 | }; |
| 31 | |
| 32 | const App = () => { |
| 33 | const rnVersion = pkg.dependencies['react-native']; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…