Skip to content

Instantly share code, notes, and snippets.

@jpgorman
Created September 20, 2018 11:39
Show Gist options
  • Save jpgorman/1d65f226f57af36083dec0fe272fdac3 to your computer and use it in GitHub Desktop.
Save jpgorman/1d65f226f57af36083dec0fe272fdac3 to your computer and use it in GitHub Desktop.
import createStore from './store'
const rootReducer = {
foo: fooReducer
}
const store = createStore(rootReducer)
const App = () => (
<Provider store={store}>
...
</Provider>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment