({ message }: Props)
| 6 | } |
| 7 | |
| 8 | export function ErrorMessage({ message }: Props) { |
| 9 | return ( |
| 10 | <View style={styles.fill}> |
| 11 | <Text>{message}</Text> |
| 12 | </View> |
| 13 | ) |
| 14 | } |
| 15 | |
| 16 | const styles = StyleSheet.create({ |
| 17 | fill: { |
nothing calls this directly
no outgoing calls
no test coverage detected