-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.tsx
More file actions
23 lines (20 loc) · 748 Bytes
/
App.tsx
File metadata and controls
23 lines (20 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { SafeAreaProvider } from 'react-native-safe-area-context';
import RootNavigator from './src/app/navigation/RootNavigator';
import Toast from 'react-native-toast-message';
import { Provider } from 'react-redux';
import { store } from './src/app/redux/store';
import { initializeAuth } from 'firebase/auth';
import ReactNativeAsyncStorage from '@react-native-async-storage/async-storage';
// import { PersistGate } from 'redux-persist/integration/react';
export default function App() {
return (
<Provider store={store}>
{/* <PersistGate loading={null} persistor={persistor}> */}
<SafeAreaProvider>
<RootNavigator />
<Toast />
</SafeAreaProvider>
{/* </PersistGate> */}
</Provider>
);
}