ilink-world/index.js

15 lines
422 B
JavaScript
Raw Normal View History

2019-06-16 13:09:54 +00:00
/**
* @format
*/
2020-03-22 11:07:44 +00:00
import 'react-native-gesture-handler';
2021-10-26 18:19:13 +00:00
import {AppRegistry, YellowBox, AsyncStorage} from 'react-native';
2023-03-12 23:38:33 +00:00
import App from './app/App';
2021-10-26 18:19:13 +00:00
import {name as appName} from './app.json';
2020-04-18 19:59:05 +00:00
import axios from "axios";
2020-03-20 18:28:22 +00:00
YellowBox.ignoredYellowBox = ['Warning: Each', 'Warning: Failed'];
console.disableYellowBox = true;
2020-09-30 05:46:30 +00:00
//console.reportErrorsAsExceptions = false;
2020-03-20 18:28:22 +00:00
2019-06-16 13:09:54 +00:00
AppRegistry.registerComponent(appName, () => App);