Skip to content

Instantly share code, notes, and snippets.

@rfinni
Created November 16, 2016 03:01
Show Gist options
  • Select an option

  • Save rfinni/478b7fcd29b0a61931585ee244e9f287 to your computer and use it in GitHub Desktop.

Select an option

Save rfinni/478b7fcd29b0a61931585ee244e9f287 to your computer and use it in GitHub Desktop.
Store creation, using the createStore redux utility.
import { createStore } from 'redux';
import reducers from './reducers/index';
// Includes Redux devtools
const store = createStore(reducers, window.devToolsExtension && window.devToolsExtension());
export default store;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment