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.


📘

Permissions

To access this component, the entity user must have read permissions for the product object. To create, edit, and delete products, they must also have create, update, or delete permissions for the product object. For more information, see List of permissions.

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 />
};