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 and ProductDetails components, providing a complete experience throughout the Products workflow. This component provides the ability to create new products and edit and delete existing products. It also 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
return (
  <>
    <Products />
  </>
);