Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

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:

ParameterTypeReq?Description
routeRequisitionListDetails(uid: string) => string | voidNoCallback function for route requisition list details

Slots

This container exposes the following slots for customization:

SlotTypeRequiredDescription
slots\{ Header?: SlotPropsNoCustom 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=() => {}
/>
);
}