mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
import { ExcessPaymentDialog } from './dialogs/PaymentMadeExcessDialog';
|
|
|
|
export function PaymentMadeDialogs() {
|
|
return (
|
|
<>
|
|
<ExcessPaymentDialog dialogName={'payment-made-excessed-payment'} />
|
|
</>
|
|
);
|
|
}
|