- Notifications
You must be signed in to change notification settings - Fork111
Closed
Description
hi all, i use redux'screateStore andcompose like this
constenhancers=[firebaseEnhancer,middlewareEnhancer,offlineEnhancer];constcreateEnhanceStore=compose(...enhancers)(createStore);exportconstcreateReduxStore=(initialState)=>createEnhanceStore(makeRootReducer(),initialState);
and inredux-dynamic-modules , i check the code, i can putmiddleware in a new extension likeredux-dynamic-modules-thunk , but where i should put the other enhancers?
theModuleStore only compose middleware ,
am i wrong ?