mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
10 lines
389 B
TypeScript
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);
|