()
| 2 | import { Image, StyleSheet } from 'react-native' |
| 3 | |
| 4 | export default function App() { |
| 5 | return ( |
| 6 | <Image |
| 7 | style={styles.image} |
| 8 | source={{ uri: 'https://www.reactnative.express/static/logo.png' }} |
| 9 | /> |
| 10 | ) |
| 11 | } |
| 12 | |
| 13 | const styles = StyleSheet.create({ |
| 14 | image: { |
nothing calls this directly
no outgoing calls
no test coverage detected