HomeGuidesRecipesAPI ExplorerForumSupport
Partner Portal
Partner Portal

The Products component is a comprehensive React component that renders the entire Products page. The component integrates the functionalities of the ProductsTable component and provides a complete experience throughout the Products workflow. This component provides the ability to create new products and supports searching, filtering, and pagination between products.

Preview

`Payables` component preview.

Products component preview.

Usage

Bring in the Products component into your application as shown:

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

...

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