mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 11:06:03 +00:00
7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
import { bindActionCreators } from 'redux';
|
|
|
|
export default function wrapActionCreators(actionCreators) {
|
|
return function (dispatch) {
|
|
return bindActionCreators(actionCreators, dispatch);
|
|
};
|
|
} |