-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
45 lines (37 loc) · 1.12 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
import React from 'react';
import {Provider} from 'react-redux';
import {configureStore, getDefaultMiddleware} from '@reduxjs/toolkit';
import rootReducer from './src/store/index';
import AsyncStorage from '@react-native-async-storage/async-storage';
import {persistStore, persistReducer} from 'redux-persist';
import {PersistGate} from 'redux-persist/integration/react';
import {SafeAreaView, LogBox} from 'react-native';
import Navigation from './src/navigation/navigation';
const persistConfig = {
key: 'root',
version: 1,
storage: AsyncStorage,
blacklist: [],
};
const persistedReducer = persistReducer(persistConfig, rootReducer);
export const store = configureStore({
reducer: persistedReducer,
devTools: true,
middleware: getDefaultMiddleware({
serializableCheck: false,
}),
});
let persistor = persistStore(store);
const App = () => {
LogBox.ignoreAllLogs();
return (
<SafeAreaView style={{flex: 1}}>
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<Navigation />
</PersistGate>
</Provider>
</SafeAreaView>
);
};
export default App;