InvoicesTable
InvoicesTable
is a React component that displays all outgoing invoices created by an entity. The component shows each invoice's amount, status, issuance date, due date, and the counterpart to which they were sent.
Preview

InvoicesTable
component preview.
Usage
Use in the InvoicesTable
component in your application as shown:
import { InvoicesTable } from "@team-monite/ui-widgets-react";
...
// TODO: This component must be rendered within the MoniteProvider wrapper
return (
<>
<InvoicesTable />
</>
);
Props
The following table shows all InvoicesTable
component properties, their types, and description:
Prop | Type | Description |
---|---|---|
onRowClick | function | This callback takes the identifier of the clicked row as a parameter and is triggered when a invoice table row is clicked. |
Updated 14 days ago