blob: 1a6b219640221db06e19bd1371c4444dc5dad97a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/**
* @format
*/
import 'platform/polyfills'
import {AppRegistry} from 'react-native'
import App from './src/App'
import {name as appName} from './src/app.json'
AppRegistry.registerComponent(appName, () => App)
|