-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
58 lines (55 loc) · 1.84 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
57
58
import React from 'react';
import { StyleSheet, View } from 'react-native';
// import AsyncStorgage from './components/AsyncStorage';
// import DateTimePicker from './components/DatetimePicker';
// import FlashList from './components/FlashList';
// import GestureHandler from './components/GestureHandler';
// import LottieView from './components/LottieView';
// import Maps from './components/Maps';
// import MaskedView from './components/MaskedView';
// import NetInfo from './components/NetInfo';
// import PagerView from './components/PagerView';
// import Picker from './components/Picker';
// import Reanimated from './components/Reanimated';
// import SVG from './components/SVG';
// import SafeAreaContext from './components/SafeAreaContext';
// import Screens from './components/Screens';
// import SegmentedControl from './components/SegmentedControl';
// import Skia from './components/Skia';
// import Slider from './components/Slider';
// import Stripe from './components/Stripe';
// import ViewShot from './components/ViewShot';
// import WebView from './components/WebView';
export default function App() {
return (
<View style={styles.container}>
{/* <LottieView /> */}
{/* <AsyncStorgage /> */}
{/* <Stripe /> */}
{/* <GestureHandler /> */}
{/* <Reanimated /> */}
{/* <Screens /> */}
{/* <SVG /> */}
{/* <SafeAreaContext /> */}
{/* <NetInfo /> */}
{/* <Picker /> */}
{/* <Slider /> */}
{/* <DateTimePicker /> */}
{/* <PagerView /> */}
{/* <Maps /> */}
{/* <ViewShot /> */}
{/* <WebView /> */}
{/* <MaskedView /> */}
{/* <SegmentedControl /> */}
{/* <Skia /> */}
{/* <FlashList /> */}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'space-evenly',
alignItems: 'stretch',
},
});