import './global.css'; import React, {useEffect} from 'react'; import {NavigationContainer} from '@react-navigation/native'; import {GestureHandlerRootView} from 'react-native-gesture-handler'; import SplashScreen from 'react-native-splash-screen'; import AppNavigator from './src/navigation/AppNavigator'; import {AuthProvider} from './src/context/AuthContext'; import {Platform} from 'react-native'; const App = () => { useEffect(() => { if (Platform.OS === 'android') SplashScreen.hide(); }, []); return ( ); }; export default App;