12345678910111213141516171819202122 |
- import React from 'react';
- import { EditorField, EditorFieldGroup, EditorRow } from '@grafana/experimental';
- import { RawQuery } from '../../../prometheus/querybuilder/shared/RawQuery';
- import { lokiGrammar } from '../../syntax';
- export interface Props {
- query: string;
- }
- export function QueryPreview({ query }: Props) {
- return (
- <EditorRow>
- <EditorFieldGroup>
- <EditorField label="Raw query">
- <RawQuery query={query} lang={{ grammar: lokiGrammar, name: 'lokiql' }} />
- </EditorField>
- </EditorFieldGroup>
- </EditorRow>
- );
- }
|