-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
executable file
·56 lines (45 loc) · 1.21 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import 'react-native-gesture-handler';
import * as React from 'react';
import { FC } from 'react';
import Constants from 'expo-constants';
import { Providers } from "./src/Providers";
import { DrawerNavProps, DrawerParamList } from './src/DrawerParamList';
import { createDrawerNavigator } from '@react-navigation/drawer';
import { NavigationContainer } from '@react-navigation/native';
// import { StyleSheet, Text, View } from 'react-native';
//import { Routes } from "./Routes";
// import TopBar from './components/TopBar';
// import Cards from "./components/Cards";
// import Buttons from "./components/Buttons";
//import axios from 'axios';
/* const App: FC = () => {
return (
<View style={styles.container}>
<TopBar></TopBar>
<View style={styles.swipes}>
<Cards />
</View>
<Buttons />
</View>
);
} */
export default Providers;
/* const styles = StyleSheet.create({
container: {
flex: 1,
marginTop: Constants.statusBarHeight,
},
swipes: {
flex: 1,
padding: 10,
paddingTop: 8,
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 3,
},
shadowOpacity: 0.29,
shadowRadius: 4.65,
elevation: 7,
},
}); */