Closed jmatsushita closed 8 years ago
@jmatsushita I'm not sure if I've done it the correct way or if there will be side-effects from doing it this way, but I used the following:
const store = createStore(
combineReducers({ root: updater, routing: routerReducer }),
compose(
reduxElm,
applyMiddleware(createLogger()),
instrument,
persist
)
);
@jmatsushita I tried your example and it seemed to be working except there was of course some missing imports which had to be resolved.
Can you please elaborate on what you mean by "it doesn't seem to work"?
It all works (apart from my initial understanding of how it should work ;))
Hi there,
I'm giving redux-elm a spin and I was wondering if it's possible to add store middleware?
I've tried this to modify the
boilerplate.js
file with https://github.com/pgte/pouch-redux-middleware:But it doesn't seem to work.
I'm probably missing something trivial?
Thanks for your time!
Jun