Skip to content

Instantly share code, notes, and snippets.

@pfulop
Created August 24, 2016 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pfulop/3ac2fb5db4ae9dc6f3d5dec8f7d4ee4b to your computer and use it in GitHub Desktop.
Save pfulop/3ac2fb5db4ae9dc6f3d5dec8f7d4ee4b to your computer and use it in GitHub Desktop.
import React from 'react';
import { AppRegistry } from 'react-native';
import configureStore from './store/index';
import App from './components/App';
import { Provider } from 'react-redux';
const store = configureStore();
export default () => (
<Provider store={store}>
<App />
</Provider>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment