mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
17 lines
470 B
TypeScript
17 lines
470 B
TypeScript
// @ts-nocheck
|
|
import { connect } from 'react-redux';
|
|
import {
|
|
setPaymentReceivesTableState,
|
|
resetPaymentReceivesTableState,
|
|
} from '@/store/PaymentReceives/paymentReceives.actions';
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
setPaymentReceivesTableState: (state) =>
|
|
dispatch(setPaymentReceivesTableState(state)),
|
|
|
|
resetPaymentReceivesTableState: () =>
|
|
dispatch(resetPaymentReceivesTableState()),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps);
|