UNPKG

react-redux

Version:

Official React bindings for Redux

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