Viewing File: /home/ubuntu/route-and-root-frontend-base/node_modules/react-redux/es/utils/bindActionCreators.js

export default function bindActionCreators(actionCreators, dispatch) {
  const boundActionCreators = {};

  for (const key in actionCreators) {
    const actionCreator = actionCreators[key];

    if (typeof actionCreator === 'function') {
      boundActionCreators[key] = (...args) => dispatch(actionCreator(...args));
    }
  }

  return boundActionCreators;
}
Back to Directory File Manager