Files
bigcapital/client/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.js
a.bouhuolia d47633b8ea feat: Inventory item details report.
feat: Cash flow statement report.
2021-05-31 13:17:02 +02:00

10 lines
364 B
JavaScript

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