7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
|
import { bindActionCreators } from 'redux';
|
||
|
|
||
|
export default function wrapActionCreators(actionCreators) {
|
||
|
return function (dispatch) {
|
||
|
return bindActionCreators(actionCreators, dispatch);
|
||
|
};
|
||
|
}
|