I\'m using Redux, redux-router and reactjs.
I\'m trying to make an app where I fetch information on route change, so, I\'ve something like:
I've did this with custom binding on plain router onEnter/onLeave callback props like this:
const store = configureStore() //then in router store.dispatch(myRouteEnterAction())} />
It's a bit hacky but works, and I don't know better solution right now.