forked from Evai/RNExampleApp
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
Latest commit
executable file
·25 lines (23 loc) · 466 Bytes
/
Copy pathindex.js
File metadata and controls
executable file
·25 lines (23 loc) · 466 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// __STRESS_TEST__ = false;
// __DEV__ = true
import{
AppRegistry
}from'react-native'
importAppfrom'./App';
if(!__DEV__){
global.console={
info: ()=>{
},
log: ()=>{
},
warn: ()=>{
},
debug: ()=>{
},
error: ()=>{
},
};
}
console.ignoredYellowBox=['Setting a timer']
// YellowBox.ignoreWarnings(['Remote debugger','Module RCTImageLoader','Module RCTVideoManager']);
AppRegistry.registerComponent('whereApp',()=>App);