mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 17:19:27 +01:00
18 lines
469 B
TypeScript
18 lines
469 B
TypeScript
import React from 'react';
|
|
import { DarkTheme, NavigationContainer } from '@react-navigation/native';
|
|
import SplashPage from './src/components/SplashPage';
|
|
import RootNavigator from './src/components/navigation/RootNavigator';
|
|
import { Provider } from 'jotai';
|
|
|
|
const App = () => (
|
|
<Provider>
|
|
<SplashPage>
|
|
<NavigationContainer theme={DarkTheme}>
|
|
<RootNavigator />
|
|
</NavigationContainer>
|
|
</SplashPage>
|
|
</Provider>
|
|
);
|
|
|
|
export default App;
|