mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
11 lines
374 B
TypeScript
11 lines
374 B
TypeScript
// @ts-nocheck
|
|
import { connect } from 'react-redux';
|
|
import { toggleCashFlowStatementFilterDrawer } from '@/store/financialStatement/financialStatements.actions';
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
toggleCashFlowStatementFilterDrawer: (toggle) =>
|
|
dispatch(toggleCashFlowStatementFilterDrawer(toggle)),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps);
|