-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
39 lines (36 loc) · 1.28 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
36
37
38
39
import React from 'react';
import { Alert, Button, StyleSheet, Text, ScrollView, View, TouchableHighlight, TouchableOpacity, Picker, TextInput, Slider, Switch } from 'react-native';
// import ExampleOne from './components/ExampleOne';
// import ExampleTwo from './components/ExampleTwo';
// import ExampleThree from './components/ExampleThree';
// import ExampleFour from './components/ExampleFour';
// import ExampleFive from './components/ExampleFive';
// import ExampleSix from './components/ExampleSix';
// import ExampleSeven from './components/ExampleSeven';
// import ExampleEight from './components/ExampleEight';
// import ExampleNine from './components/ExampleNine';
const styles = StyleSheet.create({
container: {
paddingHorizontal: 20,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center"
}
});
export default class App extends React.Component {
render() {
return (
<ScrollView contentContainerStyle={styles.container}>
{/* <ExampleOne /> */}
{/* <ExampleTwo /> */}
{/* <ExampleThree /> */}
{/* <ExampleFour /> */}
{/* <ExampleFive /> */}
{/* <ExampleSix /> */}
{/* <ExampleSeven /> */}
{/* <ExampleEight /> */}
{/* <ExampleNine /> */}
</ScrollView>
);
}
}