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) 188 B
export interface HeaderProps { imageSrc: string; imageAlt: string; title: string; buttons: Button[]; } interface Button { label: string; link: string; } export {};