12 lines
265 B
JavaScript
12 lines
265 B
JavaScript
|
'use strict';
|
||
|
|
||
|
exports.__esModule = true;
|
||
|
exports.default = wrapActionCreators;
|
||
|
|
||
|
var _redux = require('redux');
|
||
|
|
||
|
function wrapActionCreators(actionCreators) {
|
||
|
return function (dispatch) {
|
||
|
return (0, _redux.bindActionCreators)(actionCreators, dispatch);
|
||
|
};
|
||
|
}
|