Skip to content

Commit c168871

Browse files
committed
feat(update): minor changes
1 parent 7b3555c commit c168871

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

example/src/App.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import React, {type FunctionComponent} from 'react';
22
import {GestureHandlerRootView} from 'react-native-gesture-handler';
3-
// import {DraggableGridExample as DraggableExample} from './pages/DraggableGridExample';
4-
import {DraggableStackExample as DraggableExample} from './pages/DraggableStackExample';
5-
import {DraggableBasicExample} from './pages/DraggableBasicExample';
3+
import {DraggableStackExample} from './pages/DraggableStackExample';
64
import {SafeAreaView, StyleSheet} from 'react-native';
75
import {configureReanimatedLogger} from 'react-native-reanimated';
8-
import HomeScreen from './pages/OtherExample';
96

107
// This is the default configuration
118
configureReanimatedLogger({
@@ -17,9 +14,7 @@ export const App: FunctionComponent = () => {
1714
return (
1815
<SafeAreaView style={styles.container}>
1916
<GestureHandlerRootView>
20-
{/* <DraggableBasicExample /> */}
21-
{/* <DraggableGridExample /> */}
22-
<HomeScreen />
17+
<DraggableStackExample />
2318
</GestureHandlerRootView>
2419
</SafeAreaView>
2520
);

0 commit comments

Comments
 (0)