Products
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

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 />
</>
);
Updated 19 days ago