mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
18 lines
489 B
TypeScript
18 lines
489 B
TypeScript
import { PaymentMailDialogBoot } from './PaymentMailDialogBoot';
|
|
import { PaymentMailDialogForm } from './PaymentMailDialogForm';
|
|
|
|
interface PaymentMailDialogContentProps {
|
|
dialogName: string;
|
|
paymentReceiveId: number;
|
|
}
|
|
export default function PaymentMailDialogContent({
|
|
dialogName,
|
|
paymentReceiveId,
|
|
}: PaymentMailDialogContentProps) {
|
|
return (
|
|
<PaymentMailDialogBoot paymentReceiveId={paymentReceiveId}>
|
|
<PaymentMailDialogForm />
|
|
</PaymentMailDialogBoot>
|
|
);
|
|
}
|