import React from 'react'; import { InlineField, TextArea } from '@grafana/ui'; import { EditorProps } from '../QueryEditor'; export const RawFrameEditor = ({ onChange, query }: EditorProps) => { const onContent = (rawFrameContent: string) => { onChange({ ...query, rawFrameContent }); }; return (