simba-mobile-cad4/index.js

16 lines
427 B
JavaScript
Raw Normal View History

2025-01-07 09:47:45 +00:00
/**
* @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);