Files
bookish/node_modules/react-redux/es/utils/wrapActionCreators.js
T

6 lines
199 B
JavaScript

import { bindActionCreators } from 'redux';
export default function wrapActionCreators(actionCreators) {
return function (dispatch) {
return bindActionCreators(actionCreators, dispatch);
};
}