import { EditorRow, EditorFieldGroup, RawQuery } from '@grafana/plugin-ui'; import { lokiGrammar } from '../../syntax'; export interface Props { query: string; } export function QueryPreview({ query }: Props) { return ( ); }