Files
mobile/index.js
2019-01-15 20:47:11 -06:00

14 lines
376 B
JavaScript

import './src/global.js'
import {AppRegistry, YellowBox} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
import "@Style/AndroidTextFix";
YellowBox.ignoreWarnings([
'Remote debugger is in',
"Can't call" // Can't call forceUpdate on a component that is not yet mounted.
]);
AppRegistry.registerComponent(appName, () => App);