import { NavModel } from '@grafana/data'; import { Page } from 'app/core/components/Page/Page'; import { withPageErrorBoundary } from './withPageErrorBoundary'; function FeatureTogglePage() { const navModel: NavModel = { node: { text: 'Alerting is not enabled', hideFromBreadcrumbs: true, subTitle: 'To enable alerting, enable it in the Grafana config', }, main: { text: 'Alerting is not enabled', }, }; return (
          {`[unified_alerting]
enabled = true
`}
        
); } export default withPageErrorBoundary(FeatureTogglePage);