Created
May 26, 2019 15:36
-
-
Save rafaelrozon/8fd195fdb448706577e5f13270e81e88 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 } from 'redux'; | |
import middlewares from './middlewares'; | |
import rootReducer from './reducer' | |
import { DEFAULT_STATE } from './constants'; | |
export default createStore(rootReducer, DEFAULT_STATE, middlewares); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment