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