Invoices.js 218 B

12345678910111213
  1. import React from 'react';
  2. import InvoiceList from '../components/InvoiceList';
  3. const Invoices = () => {
  4. return (
  5. <div>
  6. <h2>Invoices</h2>
  7. <InvoiceList />
  8. </div>
  9. );
  10. };
  11. export default Invoices;