grafana/public/app/features/alerting/AlertHowToModal.tsx
Hugo Häggmark 22ac0fc3cd
Chore: Migrates remaining Angular modals to React (#33476)
* HelpModal: Migrates to new style

* Alerting: Migrates how to do alerting modal to React

* ApiKeysModal: migrates to new theme

* Dashboard: View dasboard json modal migrated to React and new theme

* PluginPage: migrates update plugin modal to react and new theme

* Chore: deprecates events and functions

* Simplify help modal

* Updated json modal to use Modal.ButtonRow

* Tweak to api key design

* Tests: updates snapshot

Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
2021-04-28 15:22:28 +02:00

22 lines
771 B
TypeScript

import { Modal, VerticalGroup } from '@grafana/ui';
import React from 'react';
export interface AlertHowToModalProps {
onDismiss: () => void;
}
export function AlertHowToModal({ onDismiss }: AlertHowToModalProps): JSX.Element {
return (
<Modal title="Adding an Alert" isOpen onDismiss={onDismiss} onClickBackdrop={onDismiss}>
<VerticalGroup spacing="sm">
<img src="public/img/alert_howto_new.png" alt="link to how to alert image" />
<p>
Alerts are added and configured in the Alert tab of any dashboard graph panel, letting you build and visualize
an alert using existing queries.
</p>
<p>Remember to save the dashboard to persist your alert rule changes.</p>
</VerticalGroup>
</Modal>
);
}