mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
25 lines
648 B
TypeScript
25 lines
648 B
TypeScript
import { InvoicePaymentPage, PaymentPageProps } from './PaymentPage';
|
|
|
|
export interface InvoicePaymentPagePreviewProps
|
|
extends Partial<PaymentPageProps> { }
|
|
|
|
export function InvoicePaymentPagePreview(
|
|
props: InvoicePaymentPagePreviewProps,
|
|
) {
|
|
return (
|
|
<InvoicePaymentPage
|
|
paidAmount={'$1,000.00'}
|
|
dueDate={'20 Sep 2024'}
|
|
total={'$1,000.00'}
|
|
subtotal={'$1,000.00'}
|
|
dueAmount={'$1,000.00'}
|
|
customerName={'Ahmed Bouhuolia'}
|
|
organizationName={'Bigcapital Technology, Inc.'}
|
|
invoiceNumber={'INV-000001'}
|
|
companyLogoUri={' '}
|
|
organizationAddress={' '}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|