1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-07 20:02:23 +04:00
Files
tabler/preview/pages/invoice.astro
T
2026-07-28 00:09:02 +02:00

10 lines
328 B
Plaintext

---
// Port of preview/pages/invoice.html (layout: default)
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
import InvoiceCard from '@shared/components/cards/InvoiceCard.astro';
---
<DefaultLayout title="Invoice" pageHeader="Invoice" pageMenu="extra.invoice" actions="print">
<InvoiceCard />
</DefaultLayout>