UNPKG

list-view-details

Version:

A highly customizable List View Details component for React applications. This package provides an efficient and flexible way to display data in a detailed, organized, and user-friendly list view.

12 lines (11 loc) 314 B
export interface ItemProps { imageUrl?: string | undefined; name?: string | undefined; description?: string | undefined; id?: number | undefined; quantity?: number | undefined; price?: string | undefined; onIncrement: () => void; onDecrement: () => void; addCart: () => void; }