Open
Description
In the "Autobind Action Creators" part of the readme I see:
const services = bindWithDispatch(store.dispatch, rawServices)
The signature of the redux binder is bindActionCreators(actionCreators, dispatch)
, so I propose to respect the order of the arguments of the redux doc, ie:
const services = bindWithDispatch(rawServices, store.dispatch)