AlertTabIndex.tsx 308 B

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