source: src/sections/invoice/invoice-pdf.tsx@ 299af01

main
Last change on this file since 299af01 was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago

feat: implement employees

  • Property mode set to 100644
File size: 481 bytes
Line 
1import { Invoice } from 'src/schemas';
2import InvoiceEEPDF from './invoice-ee-pdf';
3import InvoiceMKPDF from './invoice-mk-pdf';
4
5type Props = {
6 invoice: Invoice;
7 currentStatus: string;
8};
9
10export default function InvoicePDF({ invoice, currentStatus }: Props) {
11 return invoice.invoiceFrom.companyNumber === '16911123' ? (
12 <InvoiceEEPDF invoice={invoice} currentStatus={currentStatus} />
13 ) : (
14 <InvoiceMKPDF invoice={invoice} currentStatus={currentStatus} />
15 );
16}
Note: See TracBrowser for help on using the repository browser.