evals
scenario-1
scenario-10
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
A single-page inventory browser that uses the UI component suite to render product data in both table and card layouts.
loading is true. @testexport interface Product {
id: number;
name: string;
category: string;
price: number;
stock: number;
}
export interface InventoryViewerProps {
products: Product[];
loading?: boolean;
}
export default function InventoryViewer(props: InventoryViewerProps): unknown;UI component suite providing tabular and virtualized data renderers plus input controls.
Application framework for rendering the view.