import React from 'react'; import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; import { StyleSheet, View } from 'react-native'; import { ActivityIndicator, MD2Colors } from 'react-native-paper'; import { persistor, store } from './appredux/store'; import AppRoutes from './navigation/AppRoutes' import Toast from 'react-native-toast-message'; import { toastConfig } from './utils/Toast'; import { GestureHandlerRootView } from 'react-native-gesture-handler'; const App = () => { return ( } persistor={persistor}> ); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'white', }, }); export default App;