-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
42 lines (38 loc) · 910 Bytes
/
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
40
41
42
import React from 'react';
import {
SafeAreaView,
ScrollView,
StatusBar,
StyleSheet,
Text,
useColorScheme,
View,
} from 'react-native';
import Animacion1 from './components/Animacion1';
import Animacion2 from './components/Animacion2';
import Animacion3 from './components/Animacion3';
import Animacion4 from './components/Animacion4';
import Animacion5 from './components/Animacion5';
import Animacion6 from './components/Animacion6';
import Animacion7 from './components/Animacion7';
const App = () => {
return (
<>
<View style={styles.contenido}>
{/* <Animacion1 />
<Animacion2 /> */}
{/* <Animacion3 /> */}
{/* <Animacion4 /> */}
{/* <Animacion5 /> */}
{/* <Animacion6 /> */}
<Animacion7 />
</View>
</>
);
};
const styles = StyleSheet.create({
contenido: {
marginTop: 100,
},
});
export default App;