-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
39 lines (28 loc) · 791 Bytes
/
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
import React from 'react';
import {View,Image,Text,NativeModules} from 'react-native';
import {Provider} from 'react-redux';
import {DrawerNavigator} from 'react-navigation'
import {ContactsStack} from './Router';
import {store} from './redux/store/store';
import {colors} from './common_styles';
//Additional settings for testing
console.disableYellowBox = true;
export default class App extends React.Component {
constructor(props){
super(props);
//Primary state store for the whole app
this.state={
}
}
// <Provider store={store}>
// <Router coreState={this.state.coreState}/>
// </Provider>
render() {
// const Route = Router(this.state.coreState);
return (
<Provider store={store} >
<ContactsStack/>
</Provider>
);
}
}