-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
24 lines (20 loc) · 1.02 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/** @format */
import { AppRegistry, YellowBox } from 'react-native';
import App from './App';
import { name as appName } from './app.json';
AppRegistry.registerComponent(appName, () => App);
YellowBox.ignoreWarnings([ 'Warning: Failed prop type: Invalid prop `ImageComponent`', 'Module Avatar' ]);
YellowBox.ignoreWarnings([
'Warning: Failed prop type: Invalid prop `width` of type `string` supplied to `FeaturedTile',
'Module FeaturedTile'
]);
YellowBox.ignoreWarnings([
'Warning: Failed prop type: Invalid prop `width` of type `string` supplied to `Tile`',
'Module Tile'
]);
YellowBox.ignoreWarnings([
'You should only render one navigator explicitly in your app, and other navigators should be rendered by including them in that navigator.'
]);
YellowBox.ignoreWarnings([ 'Module RNIKInteractiveImageLibrary requires main queue setup since it overrides ' ]);
//RNIKInteractiveImageLibrary
// Module RNIKInteractiveImageLibrary requires main queue setup since it overrides `init` but doesn't implement `requiresMainQueueSetup`.