-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
34 lines (30 loc) · 927 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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* Generated with the TypeScript template
* https://github.com/react-native-community/react-native-template-typescript
*
* @format
*/
import React from 'react';
import {NavigationContainer} from '@react-navigation/native';
import {Provider as StoreProvider} from 'react-redux';
import store from './src/redux/store';
// import Index from './components/01_StyleSheet';
// import Index from './components/02_Flexbox';
// import Index from './components/06_ActivityIndicator';
// import Index from './components/09_Touchable';
// import Index from './components/11_SectionList';
// import Index from './components/12_FlatList';
import Index from './src';
const App = () => {
return (
<StoreProvider store={store}>
<NavigationContainer>
<Index />
</NavigationContainer>
</StoreProvider>
);
};
export default App;