import React, { FC } from 'react'; import { Alert } from '@grafana/ui'; export const LOCAL_STORAGE_KEY = 'grafana.legacyalerting.unifiedalertingpromo'; const DeprecationNotice: FC<{}> = () => (

You are using Grafana legacy alerting, it has been deprecated and will be removed in the next major version of Grafana.
We encourage you to upgrade to the new Grafana alerting experience.

See{' '} What’s New with Grafana alerting {' '} to learn more about what‘s new or learn{' '} how to enable the new Grafana alerting feature .

); export { DeprecationNotice };