'react-dom' // My component function MyApp() { return ( <div> <h1 style={{ fontSize:21 }}>Hello World</h1> </div> ) } // attach to the DOM render(<MyApp/>, document.querySelector('#app')); React Native / JSX import React from 'react' import { AppRegistry, View, Text } from 'react-native' // My component function MyApp() { return ( <View> <Text style={{ fontSize:21 }}>Hello World</Text> </View> ) } // Mount the app AppRegistry.registerComponent('HAgnosticNews', () => MyApp) 12 / 35