mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
10 lines
327 B
JavaScript
10 lines
327 B
JavaScript
import { connect } from 'react-redux';
|
|
import { setPaymentReceivesTableState } from 'store/PaymentReceives/paymentReceives.actions';
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
setPaymentReceivesTableState: (state) =>
|
|
dispatch(setPaymentReceivesTableState(state)),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps);
|