mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
10 lines
367 B
JavaScript
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);
|