-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
23 lines (21 loc) · 800 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
import React from 'react';
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import Crousal from './Src/Crousal';
import FlashList from './Src/FlashList';
import HorizontalList from './Src/HorizontalList';
import VerticalList from './Src/VerticalList';
import ProgressBar from './Src/progressBar';
import FlotingImage from './Src/flotingImage';
import Transition from './Src/Transition/withTiming';
import PhoneRing from './Src/phoneRing/reanimated/reanimated';
import TabBar from './Src/Tabbar';
import CounterTicker from './Src/counterTicker/index'
import Halloween from './Src/halloween';
import ThreeDButton from './Src/3dButton';
import RootNavigator from './Src/bottomBar';
export default function App() {
return (
<RootNavigator/>
);
}