Files
mobile/index.js
2018-12-28 15:32:00 -06:00

12 lines
263 B
JavaScript

import './src/global.js'
import {AppRegistry, YellowBox} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
YellowBox.ignoreWarnings([
'Remote debugger is in',
]);
AppRegistry.registerComponent(appName, () => App);