evals
scenario-1
scenario-10
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
Build a help system for a dashboard interface that displays tooltips for various controls. The dashboard has a scrollable container with multiple sections, and the help tooltips should automatically dismiss when users scroll the content area.
Create a React component called ScrollableDashboard that implements:
overflow: auto or overflow-y: scroll) that contains a list of at least 5 dashboard sectionsThe component should:
height: 400px and scrollable overflowProvides accessible tooltip component primitives for React applications.
Provides the React framework for building the component.
Provides testing utilities for React components.
/**
* A scrollable dashboard component with help tooltips that automatically
* dismiss when scrolling occurs.
*/
export function ScrollableDashboard(): JSX.Element;