Last active
August 25, 2017 23:40
-
-
Save lesniakania/144114976cd2e9b83b13dae0dec06bc3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| import React from 'react-native'; | |
| import { Provider } from 'react-redux/native'; | |
| import Routes from '../Routes' | |
| import store from '../Store' | |
| class App extends React.Component { | |
| render() { | |
| return ( | |
| <Provider store={store}> | |
| {() => <Routes />} | |
| </Provider> | |
| ); | |
| } | |
| }; | |
| export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment