Files
bigcapital/packages/webapp/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx
2023-02-03 01:02:31 +02:00

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