-
-
Notifications
You must be signed in to change notification settings - Fork 944
Expand file tree
/
Copy pathApp.tsx
More file actions
25 lines (21 loc) · 557 Bytes
/
App.tsx
File metadata and controls
25 lines (21 loc) · 557 Bytes
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
import React from 'react';
import { StyleSheet } from 'react-native';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import Main from './src/Main';
import { enableScreens } from 'react-native-screens';
enableScreens(true);
// @ts-ignore
import { enableLogging } from '@gorhom/bottom-sheet';
enableLogging();
export default function App() {
return (
<GestureHandlerRootView style={styles.container}>
<Main />
</GestureHandlerRootView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
});