import {NavigationContainer} from '@react-navigation/native'; import React from 'react'; import {Provider} from 'react-redux'; import {navigationRef} from './RootNavigation'; import Routes from './routes'; import store from './store/configureStore'; const App = () => { return ( /** * This is the provider from the redux store, it acts as the root provider for our application */ ); }; export default App;