-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
36 lines (30 loc) · 923 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
35
36
import { StatusBar } from "expo-status-bar";
import React from "react";
import { StyleSheet, View } from "react-native";
import Drag from "./src/screens/Drag";
import Lottie from "./src/screens/Lottie";
import Navigation from "./src/containers/Navigation";
import NavigationShared from "./src/containers/NavigationShared";
import Accordeon from "./src/screens/Accordeon";
import AccordeonTransition from "./src/screens/AccordeonTransition";
import Channel from "./src/components/Chanel/Chanel";
export default function App() {
return (
<View style={styles.container}>
<StatusBar style="auto" />
{/* <Lottie /> */}
{/* REANIMATED */}
{/* <Drag /> */}
{/* <Accordeon /> */}
{/* <AccordeonTransition /> */}
{/* <Navigation /> */}
<NavigationShared />
{/* <Channel /> */}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1
}
});