-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
35 lines (33 loc) · 1.18 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
import React, {useEffect} from 'react';
import 'react-native-gesture-handler';
import {ThemeProvider} from '@shopify/restyle';
import {theme} from './src/components';
import {SafeAreaProvider} from 'react-native-safe-area-context';
import {AuthenticationNavigator} from './src/components/Auth';
import {createStackNavigator} from '@react-navigation/stack';
import {NavigationContainer} from '@react-navigation/native';
import {DashboardNavigator} from './src/components/Dashboard';
import { Provider } from 'react-redux';
import store from './src/store';
const AppStack = createStackNavigator();
export default function App() {
return (
<Provider store={store}>
<ThemeProvider {...{theme}}>
<NavigationContainer>
<SafeAreaProvider>
<AppStack.Navigator
headerMode="none"
initialRouteName="Authentication">
<AppStack.Screen
name="Authentication"
component={AuthenticationNavigator}
/>
<AppStack.Screen name="Dashboard" component={DashboardNavigator} />
</AppStack.Navigator>
</SafeAreaProvider>
</NavigationContainer>
</ThemeProvider>
</Provider>
);
}