-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
34 lines (31 loc) · 842 Bytes
/
App.tsx
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
/**
** FalconIT template for React Native App
* https://github.com/falconitconsultant
*
* @format
* @flow strict-local
*/
import React from 'react';
import { LogBox, StatusBar } from 'react-native';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/integration/react';
import Snackbar from 'src/Components/Snackbar';
import Navigations from 'src/Navigations';
import { persistor, store } from 'src/Redux/ConfigureStore';
LogBox.ignoreAllLogs();
const App = () => {
return (
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<StatusBar
backgroundColor={'transparent'}
barStyle="dark-content"
translucent
/>
<Navigations />
<Snackbar />
</PersistGate>
</Provider>
);
};
export default App;