grafana/public/app/features/alerting/AlertTabIndex.tsx

9 lines
308 B
TypeScript
Raw Normal View History

import { config } from '@grafana/runtime';
import { AlertTab } from './AlertTab';
import { PanelAlertTabContent } from './unified/PanelAlertTabContent';
// route between unified and "old" alerting pages based on feature flag
export default config.unifiedAlertingEnabled ? PanelAlertTabContent : AlertTab;