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"

...

// TODO: This component must be rendered within the MoniteProvider wrapper
return (
  <>
    <Payables />
  </>
);