Files
bigcapital/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.js
2021-09-21 17:13:53 +02:00

10 lines
354 B
JavaScript

import { connect } from 'react-redux';
import { setInventoryAdjustmentsTableState } from 'store/inventoryAdjustments/inventoryAdjustment.actions';
const mapDispatchToProps = (dispatch) => ({
setInventoryAdjustmentTableState: (queries) =>
dispatch(setInventoryAdjustmentsTableState(queries)),
});
export default connect(null, mapDispatchToProps);