Files
bigcapital/packages/webapp/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx
2023-02-03 01:02:31 +02:00

11 lines
371 B
TypeScript

// @ts-nocheck
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);