Files
bigcapital/packages/webapp/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx
2023-02-03 01:02:31 +02:00

11 lines
384 B
TypeScript

// @ts-nocheck
import { connect } from 'react-redux';
import { toggleInventoryValuationFilterDrawer } from '@/store/financialStatement/financialStatements.actions';
export const mapDispatchToProps = (dispatch) => ({
toggleInventoryValuationFilterDrawer: (toggle) =>
dispatch(toggleInventoryValuationFilterDrawer(toggle)),
});
export default connect(null, mapDispatchToProps);