Files
bigcapital/client/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.js
2021-03-29 19:24:34 +02:00

10 lines
367 B
JavaScript

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);