QuotesTable
QuotesTable
is a React component that displays all quotes created by an entity. The component shows each quote's amount, status, issue date, validity date, and the counterpart to which they were sent.
Preview

QuotesTable
component preview.
Usage
Use in the QuotesTable
component in your application as shown:
import { QuotesTable } from "@monite/sdk-react";
...
// TODO: This component must be rendered within the MoniteProvider wrapper
return (
<>
<QuotesTable />
</>
);
Props
The following table shows all QuotesTable
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 quotes table row is clicked. |
Updated about 1 month ago