2019-04-17 18:57:46 +00:00
|
|
|
import 'react-native-console-time-polyfill';
|
2019-03-12 16:23:06 +00:00
|
|
|
import { AppRegistry } from 'react-native';
|
2019-07-18 17:44:02 +00:00
|
|
|
import { name as appName, share as shareName } from './app.json';
|
2019-03-12 16:23:06 +00:00
|
|
|
|
2019-08-13 13:03:46 +00:00
|
|
|
if (__DEV__) {
|
|
|
|
require('./app/ReactotronConfig');
|
|
|
|
}
|
|
|
|
|
2019-07-18 17:44:02 +00:00
|
|
|
AppRegistry.registerComponent(appName, () => require('./app/index').default);
|
|
|
|
AppRegistry.registerComponent(shareName, () => require('./app/share').default);
|
2019-03-12 16:23:06 +00:00
|
|
|
|
|
|
|
// For storybook, comment everything above and uncomment below
|
|
|
|
// import './storybook';
|