index.js 466 B

12345678910111213
  1. /** @format */
  2. import {AppRegistry} from 'react-native';
  3. import App from './App';
  4. import {name as appName} from './app.json';
  5. // console.ignoredYellowBox = ['Warning: BackAndroid is deprecated. Please use BackHandler instead.','source.uri should not be an empty string','Invalid props.style key'];
  6. // console.disableYellowBox = true // 关闭全部黄色警告
  7. console.ignoredYellowBox = ['Setting a timer'];
  8. AppRegistry.registerComponent(appName, () => App);