mirror of
https://github.com/standardnotes/mobile.git
synced 2026-04-18 21:29:05 -04:00
14 lines
376 B
JavaScript
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);
|