HomeGuidesRecipesAPI ExplorerForumSupport
Partner Portal
Partner Portal

Receivables

The Receivables component is a comprehensive React component that renders the entire Receivables page. The component integrates the functionalities of the ReceivablesTable component and includes the ability to view receivable details.

Preview

`Receivables` component preview.

Receivables component preview.

Usage

Bring in the Receivables component into your application as shown:

import { Receivables } from "@monite/sdk-react"

...

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