import React, { ChangeEvent } from 'react'; import { InlineField, TextArea } from '@grafana/ui'; import { EditorProps } from '../QueryEditor'; export const CSVContentEditor = ({ onChange, query }: EditorProps) => { const onContent = (e: ChangeEvent) => { onChange({ ...query, csvContent: e.currentTarget.value }); }; return (