feat(financial statment): inventory valuation.

This commit is contained in:
elforjani3
2021-03-29 19:24:34 +02:00
parent 5f573c095e
commit f21b98eac3
10 changed files with 581 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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);