({children}: LabelProps)
| 6 | } |
| 7 | |
| 8 | const LabelTile = ({children}: LabelProps) => { |
| 9 | return ( |
| 10 | <View style={styles.label}> |
| 11 | <Text>{children}</Text> |
| 12 | </View> |
| 13 | ); |
| 14 | }; |
| 15 | |
| 16 | const styles = StyleSheet.create({ |
| 17 | label: { |
nothing calls this directly
no outgoing calls
no test coverage detected