Files
bigcapital/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx
2022-08-22 19:56:27 +02:00

10 lines
389 B
TypeScript

import { connect } from 'react-redux';
import { toggleProjectProfitabilitySummaryFilterDrawer } from '@/store/financialStatement/financialStatements.actions';
const mapDispatchToProps = (dispatch) => ({
toggleProjectProfitabilitySummaryFilterDrawer: (toggle) =>
dispatch(toggleProjectProfitabilitySummaryFilterDrawer(toggle)),
});
export default connect(null, mapDispatchToProps);