D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
datasource
/
testdata
/
Filename :
ConfigEditor.tsx
back
Copy
// 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 />; } }