Files
bigcapital/client/src/containers/Sales/PaymentReceive/PaymentsLanding/withPaymentReceivesActions.js
a.bouhuolia d48532a7e6 refactoring: sales tables.
refacoring: purchases tables.
2021-02-11 20:45:06 +02:00

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