evals
scenario-1
scenario-10
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
Build a React component that displays multiple information tooltips with centrally configured behavior. The component should demonstrate proper tooltip provider setup to ensure consistent timing and interaction across all tooltips.
Create a dashboard component that displays four data cards (Users, Revenue, Growth, Alerts), each with an info icon that shows a tooltip on hover. All tooltips should share consistent timing behavior configured at a provider level.
Dashboard component that renders four data cards in a grid layoutimport React from 'react';
/**
* Dashboard component that displays data cards with tooltips
* @returns A React component displaying a dashboard with tooltips
*/
export function Dashboard(): React.ReactElement;Provides tooltip components with provider-level configuration support.
React library for building user interfaces.