import React from 'react'; import { DataSourceHttpSettings } from '@grafana/ui'; import { DataSourcePluginOptionsEditorProps } from '@grafana/data'; import { PromSettings } from './PromSettings'; import { PromOptions } from '../types'; import { config } from 'app/core/config'; export type Props = DataSourcePluginOptionsEditorProps; export const ConfigEditor = (props: Props) => { const { options, onOptionsChange } = props; return ( <> ); };