mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 02:42:22 +08:00
16 lines
331 B
TypeScript
16 lines
331 B
TypeScript
// 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 />;
|
|
}
|
|
}
|