forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
562 B
18 lines
562 B
import React, { memo } from 'react';
|
|
import { CoreApp } from '@grafana/data';
|
|
import { PromQueryEditorProps } from './types';
|
|
import { PromQueryEditor } from './PromQueryEditor';
|
|
import { PromQueryEditorForAlerting } from './PromQueryEditorForAlerting';
|
|
|
|
export function PromQueryEditorByApp(props: PromQueryEditorProps) {
|
|
const { app } = props;
|
|
|
|
switch (app) {
|
|
case CoreApp.CloudAlerting:
|
|
return <PromQueryEditorForAlerting {...props} />;
|
|
default:
|
|
return <PromQueryEditor {...props} />;
|
|
}
|
|
}
|
|
|
|
export default memo(PromQueryEditorByApp);
|
|
|