import React from 'react'; import { Modal, VerticalGroup } from '@grafana/ui'; export interface AlertHowToModalProps { onDismiss: () => void; } export function AlertHowToModal({ onDismiss }: AlertHowToModalProps): JSX.Element { return (

Alerts are added and configured in the Alert tab of any dashboard graph panel, letting you build and visualize an alert using existing queries.

Remember to save the dashboard to persist your alert rule changes.

); }