GT2/GT2-Android/node_modules/react-redux/es/utils/wrapActionCreators.js

7 lines
200 B
JavaScript
Raw Normal View History

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