HomeGuidesRecipesAPI ExplorerForumSupport
Partner Portal
Partner Portal

The Payables component is a comprehensive React component that renders the entire Payables page. The component integrates the functionalities of the PayablesDetails and PayablesTable components, providing a complete experience throughout the Payables workflow. This component provides the ability to create new payables via uploads and supports searching, filtering, and pagination between these payables.

Preview

`Payables` component preview.

Payables component preview.

Usage

Bring in the Payables component into your application as shown:

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

// This component must be rendered within the MoniteProvider wrapper
const PayablesPage = () => {
  return <Payables />;
};

Props

PropTypeDescription
onSavedfunctionThis callback is triggered when the payable is saved.
onCanceledfunctionThis callback is triggered when the payable is canceled.
onSubmittedfunctionThis callback is triggered when the payable is submitted.
onRejectedfunctionThis callback is triggered when the payable is rejected.
onApprovedfunctionThis callback is triggered when the payable is approved.
onPayfunctionThis callback is triggered when the user presses the Pay button.