Created
June 18, 2017 14:51
-
-
Save bahkostya/979594e1ca3f0033c951ae90ee748440 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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