ilink-world/index.js

14 lines
300 B
JavaScript
Raw Normal View History

2019-06-16 13:09:54 +00:00
/**
* @format
*/
2020-03-20 18:28:22 +00:00
import { AppRegistry, YellowBox } from 'react-native';
2019-06-16 13:09:54 +00:00
import App from './App';
2020-03-20 18:28:22 +00:00
import { name as appName } from './app.json';
YellowBox.ignoredYellowBox = ['Warning: Each', 'Warning: Failed'];
console.disableYellowBox = true;
2019-06-16 13:09:54 +00:00
AppRegistry.registerComponent(appName, () => App);