Skip to content

Instantly share code, notes, and snippets.

@lesniakania
Last active August 25, 2017 23:40
Show Gist options
  • Select an option

  • Save lesniakania/144114976cd2e9b83b13dae0dec06bc3 to your computer and use it in GitHub Desktop.

Select an option

Save lesniakania/144114976cd2e9b83b13dae0dec06bc3 to your computer and use it in GitHub Desktop.
'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