import React from 'react'; import InvoiceList from '../components/InvoiceList'; const Invoices = () => { return ( <div> <h2>Invoices</h2> <InvoiceList /> </div> ); }; export default Invoices;