Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import React from 'react';
  2.  
  3. import '~/config/ReactotronConfig';
  4.  
  5. import {Provider} from 'react-redux';
  6. import store from './store';
  7. import NavigationService from './services/navigation';
  8.  
  9. import Routes from '~/routes';
  10.  
  11.  
  12. const App = () => (
  13. <Provider store={store}>
  14. <Routes
  15. ref={navigatorRef => {
  16. NavigationService.setTopLevelNavigator(navigatorRef);
  17. }}
  18. />
  19. </Provider>
  20. );
  21.  
  22. export default App;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement