32 lines
933 B
TypeScript
32 lines
933 B
TypeScript
import React from 'react';
|
|
import { StatusBar, useColorScheme } from 'react-native';
|
|
import {
|
|
initialWindowMetrics,
|
|
SafeAreaProvider,
|
|
useSafeAreaInsets,
|
|
} from 'react-native-safe-area-context';
|
|
import { NavigationContainer } from '@react-navigation/native';
|
|
import { Provider } from 'react-redux';
|
|
import { persistor, store } from './store';
|
|
import { RootNavigator } from './navigation/rootNavigator';
|
|
import { PersistGate } from 'redux-persist/integration/react';
|
|
|
|
function App() {
|
|
const isDarkMode = useColorScheme() === 'dark';
|
|
|
|
return (
|
|
<Provider store={store}>
|
|
<PersistGate loading={null} persistor={persistor}>
|
|
<SafeAreaProvider>
|
|
<StatusBar barStyle={isDarkMode ? 'light-content' : 'dark-content'} />
|
|
<NavigationContainer>
|
|
<RootNavigator />
|
|
</NavigationContainer>
|
|
</SafeAreaProvider>
|
|
</PersistGate>
|
|
</Provider>
|
|
);
|
|
}
|
|
|
|
export default App;
|