-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
53 lines (46 loc) · 1.16 KB
/
App.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import React from 'react';
import { StyleSheet, SafeAreaView } from 'react-native';
import MyStatusBar from './components/MyStatusBar';
import RootNavigation from './navigation/RootNavigation';
if (__DEV__) {
import('./ReactotronConfig').then(() => console.log('Reactotron Configured'));
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#ffffff',
},
});
// const showApiCalls = () => {
// const baseUrl = 'http://www.mocky.io/';
// global._fetch = fetch;
// global.fetch = async (uri, options, ...args) => {
// const response = await global._fetch(uri, options, ...args);
// if (uri.includes(baseUrl)) {
// console.log(
// '🔵 API Call: ',
// uri,
// { request: { uri }, response },
// );
// }
// return response;
// };
// };
class App extends React.Component {
constructor(props) {
super(props);
if (__DEV__) {
console.disableYellowBox = true;
// showApiCalls();
}
}
render() {
return (
<SafeAreaView style={styles.container}>
<MyStatusBar />
<RootNavigation />
</SafeAreaView>
);
}
}
export default App;