Skip to content

Instantly share code, notes, and snippets.

@btg5679
Created July 18, 2017 00:37
Show Gist options
  • Save btg5679/fc63884651faaf8ad7dc136ee0b66546 to your computer and use it in GitHub Desktop.
Save btg5679/fc63884651faaf8ad7dc136ee0b66546 to your computer and use it in GitHub Desktop.
...
const initialState = {}
const enhancers = []
const middleware = [
thunk,
routerMiddleware(history)
]
const composedEnhancers = compose(
applyMiddleware(...middleware),
...enhancers
)
console.log('state', store);
const store = createStore(
rootReducer,
initialState,
composedEnhancers
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment