-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
28 lines (23 loc) · 806 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
import 'react-native-gesture-handler'
import React from 'react';
import { Provider as ReduxProvider } from 'react-redux';
import { StatusBar } from 'react-native';
import { I18nextProvider } from 'react-i18next';
import { Provider as PaperProvider } from 'react-native-paper';
import { Colors } from './app/Themes/Colors';
import AppNavigator from './app/Navigation/AppNavigator';
import { store } from './app/Redux/CreateStore';
import I18next from './app/I18next/I18n';
const App = () => {
return (
<I18nextProvider i18n={I18next}>
<StatusBar backgroundColor={Colors.white} barStyle="dark-content" />
<ReduxProvider store={store}>
<PaperProvider>
<AppNavigator />
</PaperProvider>
</ReduxProvider>
</I18nextProvider>
);
};
export default App;