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,28 @@
import { useEffect } from "react";
import { useState } from "react";
import InvoiceList from "../components/InvoiceList";
const MyInvoices = () => {
const [invoices, setInvoices] = useState([]);
useEffect(() => {
fetch(`https://localhost:7292/api/Invoices`, {
method: 'GET',
mode: 'cors',
credentials: 'include'
}).then(async (response) => {
console.log(response);
});
}, []);
return (
<>
<InvoiceList
invoices={invoices}
/>
</>
);
}
export default MyInvoices