HomeGuidesRecipesAPI ExplorerForumSupport
Partner Portal
Partner Portal

CreditNotesTable

CreditNotesTable is a React component that displays all credit notes created by an entity. The component shows each credit note's amount, status, issuance date, and counterpart to which they were sent.

Preview

`CreditNotesTable` component preview.

CreditNotesTable component preview.

Usage

Use in the CreditNotesTable component in your application as shown:

import { CreditNotesTable } from "@monite/sdk-react";

...

// TODO: This component must be rendered within the MoniteProvider wrapper
const CreditNotesTablePage = () => {
 return  <CreditNotesTable />
};

Props

The following table shows all CreditNotesTable component properties, their types, and description:

PropTypeDescription
onRowClickfunctionThis callback takes the identifier of the clicked row as a parameter and is triggered when a credit note table row is clicked.

See also