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