2017-08-03 20:52:06 +00:00
|
|
|
import { AppRegistry } from 'react-native';
|
|
|
|
import App from './App';
|
2018-04-27 12:58:42 +00:00
|
|
|
import { name as appName } from './app.json';
|
2017-08-03 20:52:06 +00:00
|
|
|
|
2018-04-27 12:58:42 +00:00
|
|
|
AppRegistry.registerComponent(appName, () => App);
|