You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
331 B

// Libraries
import React, { PureComponent } from 'react';
import { DataSourcePluginOptionsEditorProps } from '@grafana/data';
type Props = DataSourcePluginOptionsEditorProps<any>;
/**
* Empty Config Editor -- settings to save
*/
export class ConfigEditor extends PureComponent<Props> {
render() {
return <div />;
}
}