Setup pour list d'invoices/commandes

This commit is contained in:
Victor Turgeon
2022-11-07 20:57:38 -05:00
parent fa7e93261e
commit 6d29d85edf
4 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import InvoiceItem from "./InvoiceItem";
const InvoiceList = ({ invoices }) => {
return (
<>
{invoices.map((invoice) => {
<InvoiceItem
invoice={invoice}
/>
})}
</>
);
}
export default InvoiceList;