/** * Sample React Native App * https://github.com/facebook/react-native * * Generated with the TypeScript template * https://github.com/react-native-community/react-native-template-typescript * * @format */ import React from 'react' import { ScrollView, StatusBar, Text, useColorScheme } from 'react-native' import { Router } from './navigation/Router' import { Provider } from 'react-redux' import { persistor, store } from './redux/store' import { PersistGate } from 'redux-persist/integration/react' import 'react-native-get-random-values' import '@azure/core-asynciterator-polyfill' const App = () => { const isDarkMode = useColorScheme() === 'dark' const backgroundStyle = { backgroundColor: '#FFFDFE', flex: 1, } return ( Loading...}> ) } export default App