RequisitionListGrid Container
Overview
The RequisitionListGrid container component for the drop-in.
Version: 0.7.0-beta
Configuration
The RequisitionListGrid container provides the following configuration options:
| Parameter | Type | Req? | Description |
|---|---|---|---|
routeRequisitionListDetails | (uid: string) => string | void | No | Callback function for route requisition list details |
Slots
This container exposes the following slots for customization:
| Slot | Type | Required | Description |
|---|---|---|---|
slots | \{ Header?: SlotProps | No | Custom slot for rendering slots |
Usage
The following example demonstrates how to use the RequisitionListGrid container:
import { RequisitionListGrid } from '@dropins/storefront-requisition-list';
export default function MyComponent() { return ( <RequisitionListGrid routeRequisitionListDetails=() => {} /> );}