mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
20 lines
532 B
JavaScript
20 lines
532 B
JavaScript
import React from 'react';
|
|
|
|
import { NotifyPaymentReceiveViaFormProvider } from './NotifyPaymentReceiveViaFormProvider';
|
|
import NotifyPaymentReceiveViaSMSForm from './NotifyPaymentReceiveViaSMSForm';
|
|
|
|
export default function NotifyPaymentReceiveViaSMSContent({
|
|
// #ownProps
|
|
dialogName,
|
|
paymentReceive,
|
|
}) {
|
|
return (
|
|
<NotifyPaymentReceiveViaFormProvider
|
|
paymentReceiveId={paymentReceive}
|
|
dialogName={dialogName}
|
|
>
|
|
<NotifyPaymentReceiveViaSMSForm />
|
|
</NotifyPaymentReceiveViaFormProvider>
|
|
);
|
|
}
|