Closed thecaddy closed 8 years ago
Hello, I'm working on a new version of multireducer
, in the new version you can do this:
import { wrapDispatch } from 'multireducer'
import { fetch } from './actions'
function fetchDataDeferred(getState, dispatch) {
return wrapDispatch(dispatch, 'a')(fetch);
}
I have a multireducer and i want to populate it on the server, not quite sure how to get the actions from the multireduced store.