15 lines
422 B
JavaScript
Executable File
15 lines
422 B
JavaScript
Executable File
/**
|
|
* @format
|
|
*/
|
|
import 'react-native-gesture-handler';
|
|
import {AppRegistry, YellowBox, AsyncStorage} from 'react-native';
|
|
import App from './app/App';
|
|
import {name as appName} from './app.json';
|
|
import axios from "axios";
|
|
|
|
YellowBox.ignoredYellowBox = ['Warning: Each', 'Warning: Failed'];
|
|
console.disableYellowBox = true;
|
|
//console.reportErrorsAsExceptions = false;
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|