-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
29 lines (23 loc) · 688 Bytes
/
Copy pathApp.js
File metadata and controls
29 lines (23 loc) · 688 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
import React from 'react';
import AppNavigator from './src/navigation/RootNavigation';
import { PersistGate } from 'redux-persist/es/integration/react'
import { Provider } from 'react-redux';
import { store, persistor } from './src/redux/store/store';
export default class App extends React.Component {
constructor(props) {
super(props);
}
componentDidMount() {
}
render() {
return (
<Provider store={store}>
<PersistGate
loading={null}
persistor={persistor} >
<AppNavigator />
</PersistGate>
</Provider>
);
}
}