import React, { memo } from 'react'; import { CoreApp } from '@grafana/data'; import { PromQueryEditorSelector } from '../querybuilder/components/PromQueryEditorSelector'; import { PromQueryEditorForAlerting } from './PromQueryEditorForAlerting'; import { PromQueryEditorProps } from './types'; export function PromQueryEditorByApp(props: PromQueryEditorProps) { const { app } = props; switch (app) { case CoreApp.CloudAlerting: return ; default: return ; } } export default memo(PromQueryEditorByApp);