index.js 425 B

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