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);