UNPKG

178 BJavaScriptView Raw
1import { bindActionCreators } from 'redux'
2
3export default function wrapActionCreators(actionCreators) {
4 return dispatch => bindActionCreators(actionCreators, dispatch)
5}