15 lines
379 B
TypeScript
15 lines
379 B
TypeScript
import React from 'react';
|
|
import { StatusBar } from 'expo-status-bar';
|
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
|
|
import { RootNavigator } from './src/navigation/RootNavigator';
|
|
|
|
export default function App(): React.JSX.Element {
|
|
return (
|
|
<SafeAreaProvider>
|
|
<StatusBar style="light" />
|
|
<RootNavigator />
|
|
</SafeAreaProvider>
|
|
);
|
|
}
|