-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
24 lines (21 loc) · 696 Bytes
/
Copy pathApp.tsx
File metadata and controls
24 lines (21 loc) · 696 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
import * as React from 'react';
import {NavigationContainer} from '@react-navigation/native';
import BottomTabScreens from './src/navigation/BottomTab';
import {QueryClient, QueryClientProvider} from 'react-query';
import {Provider} from 'react-redux';
import {store} from './src/store/indexReducer';
import Splash from './src/components/Splash';
import Stack from './src/navigation/Stack';
const queryClient = new QueryClient();
const App = () => {
return (
<Provider store={store}>
<QueryClientProvider client={queryClient}>
<NavigationContainer>
<Stack />
</NavigationContainer>
</QueryClientProvider>
</Provider>
);
};
export default App;