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