mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-24 00:29:49 +00:00
10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
// @ts-nocheck
|
|
import { connect } from 'react-redux';
|
|
import { submitBilling } from '@/store/billing/Billing.action';
|
|
|
|
export const mapDispatchToProps = (dispatch) => ({
|
|
requestSubmitBilling: (form) => dispatch(submitBilling({ form })),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps);
|