8 lines
179 B
JavaScript
Raw Normal View History

2018-09-23 18:24:06 -04:00
/** @format */
2018-03-17 20:55:27 -04:00
2018-09-23 18:24:06 -04:00
import {AppRegistry} from 'react-native';
import App from './src';
2018-09-23 18:24:06 -04:00
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);