16 lines
427 B
JavaScript
16 lines
427 B
JavaScript
/**
|
|
* @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);
|