mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
feat: Invoice mail receipt preview
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import { InvoicePaymentPage, PaymentPageProps } from './PaymentPage';
|
||||
|
||||
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}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user