20 lines
449 B
TypeScript
20 lines
449 B
TypeScript
import { StatusBar } from 'expo-status-bar'
|
|
import { StyleSheet } from 'react-native'
|
|
import { GestureHandlerRootView } from 'react-native-gesture-handler'
|
|
import { MobileApp } from './src/MobileApp'
|
|
|
|
export default function App() {
|
|
return (
|
|
<GestureHandlerRootView style={styles.root}>
|
|
<MobileApp />
|
|
<StatusBar style="auto" />
|
|
</GestureHandlerRootView>
|
|
)
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
root: {
|
|
flex: 1,
|
|
},
|
|
})
|