import React from 'react' import { DarkTheme, NavigationContainer } from '@react-navigation/native' import SplashPage from '@app/screens/SplashPage' import RootNavigator from '@app/navigation/RootNavigator' import { Provider } from 'jotai' import { StatusBar, View } from 'react-native' import colors from '@app/styles/colors' import TrackPlayerState from '@app/components/TrackPlayerState' const theme = { ...DarkTheme } theme.colors.background = colors.gradient.high const App = () => ( ) export default App