AlertsPanel is the main container for meeting alerts
Integrates with @hiyve/react-intelligence's useAlerts hook to fetch and display meeting alerts. Provides settings, refresh, and history controls.
import { CloudProvider } from '@hiyve/react-intelligence';import { AlertsPanel } from '@hiyve/react-intelligence';function MeetingRoom() { return ( <CloudProvider cloudToken="your-cloud-token"> <AlertsPanel roomId="room-123" showHeader showSettings autoRefresh /> </CloudProvider> );} Copy
import { CloudProvider } from '@hiyve/react-intelligence';import { AlertsPanel } from '@hiyve/react-intelligence';function MeetingRoom() { return ( <CloudProvider cloudToken="your-cloud-token"> <AlertsPanel roomId="room-123" showHeader showSettings autoRefresh /> </CloudProvider> );}
AlertsPanel is the main container for meeting alerts
Integrates with @hiyve/react-intelligence's useAlerts hook to fetch and display meeting alerts. Provides settings, refresh, and history controls.