mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
10 lines
361 B
JavaScript
10 lines
361 B
JavaScript
import { connect } from 'react-redux';
|
|
import { toggleVendorsTransactionsFilterDrawer } from 'store/financialStatement/financialStatements.actions';
|
|
|
|
const mapActionsToProps = (dispatch) => ({
|
|
toggleVendorsTransactionsFilterDrawer: (toggle) =>
|
|
dispatch(toggleVendorsTransactionsFilterDrawer(toggle)),
|
|
});
|
|
|
|
export default connect(null, mapActionsToProps);
|