first commit
This commit is contained in:
20
App.tsx
Normal file
20
App.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import React from 'react';
|
||||
import { StatusBar } from 'expo-status-bar';
|
||||
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
||||
import { AuthProvider } from './src/context/AuthContext';
|
||||
import AppNavigator from './src/navigation/AppNavigator';
|
||||
import { COLORS } from './src/constants/theme';
|
||||
|
||||
export default function App() {
|
||||
return (
|
||||
<SafeAreaProvider>
|
||||
<AuthProvider>
|
||||
<StatusBar
|
||||
style="light"
|
||||
backgroundColor={COLORS.background}
|
||||
/>
|
||||
<AppNavigator />
|
||||
</AuthProvider>
|
||||
</SafeAreaProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user