MCPcopy Create free account
hub / github.com/react-native-linear-gradient/react-native-linear-gradient / Section

Function Section

example/src/App.tsx:23–30  ·  view source on GitHub ↗
({children, title})

Source from the content-addressed store, hash-verified

21const 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
32const App = () => {
33 const rnVersion = pkg.dependencies['react-native'];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…