Skip to content

Instantly share code, notes, and snippets.

@bahkostya
Created June 18, 2017 14:51
Show Gist options
  • Save bahkostya/979594e1ca3f0033c951ae90ee748440 to your computer and use it in GitHub Desktop.
Save bahkostya/979594e1ca3f0033c951ae90ee748440 to your computer and use it in GitHub Desktop.
import { createStore, applyMiddleware, compose } from 'redux';
import thunk from 'redux-thunk';
import rootReducer from '../reducers';
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
export default createStore(
rootReducer,
composeEnhancers(applyMiddleware(thunk)),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment