UNPKG

react-redux-with-path

Version:

A version of react-redux designed for cases that want to access sub-tree of the state. and take it as state in mapStateToProps and mapDispatchToProps

6 lines (4 loc) 197 B
import bindActionCreators from './bindActionCreators'; export default function wrapActionCreators(actionCreators, path) { return dispatch => bindActionCreators(actionCreators, dispatch, path) }