ilink-world/index.js

14 lines
300 B
JavaScript

/**
* @format
*/
import { AppRegistry, YellowBox } from 'react-native';
import App from './App';
import { name as appName } from './app.json';
YellowBox.ignoredYellowBox = ['Warning: Each', 'Warning: Failed'];
console.disableYellowBox = true;
AppRegistry.registerComponent(appName, () => App);