| 13 | } from 'react-native'; |
| 14 | |
| 15 | class HelloWorldApp extends Component { |
| 16 | render() { |
| 17 | return ( |
| 18 | <View style={styles.container}> |
| 19 | <Text style={styles.welcome}> |
| 20 | Welcome to React Native! |
| 21 | </Text> |
| 22 | <Text style={styles.instructions}> |
| 23 | To get started, edit index.ios.js |
| 24 | </Text> |
| 25 | <Text style={styles.instructions}> |
| 26 | Press Cmd+R to reload,{'\n'} |
| 27 | Cmd+D or shake for dev menu |
| 28 | </Text> |
| 29 | </View> |
| 30 | ); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | const styles = StyleSheet.create({ |
| 35 | container: { |
nothing calls this directly
no outgoing calls
no test coverage detected