mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
10 lines
364 B
JavaScript
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);
|