mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 00:00:31 +00:00
10 lines
356 B
TypeScript
10 lines
356 B
TypeScript
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);
|