-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.js
More file actions
33 lines (27 loc) · 771 Bytes
/
Copy pathApp.js
File metadata and controls
33 lines (27 loc) · 771 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
26
27
28
29
30
31
32
import React from 'react';
import { StyleSheet, AsyncStorage } from 'react-native';
import { Provider } from 'react-redux';
import store from './store';
import { MainNavigator } from './navigation';
console.ignoredYellowBox = ['Remote debugger'];
export const BASE_URL = 'https://www.cryptocompare.com';
//Temporary testing purposes
// AsyncStorage.removeItem('holdings');
// AsyncStorage.removeItem('transactions');
//WatchList feature can be implemented
//Settings feature can also be implemented
export default class App extends React.Component {
render() {
return (
<Provider store={store}>
<MainNavigator />
</Provider>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#202428',
},
});