ReactMigration: Migrate Loki and Elastic config pages to React (#19979)

This commit is contained in:
Andrej Ocenas
2019-10-25 16:43:20 +02:00
committed by GitHub
parent 771f21ed09
commit 551e24f9f8
26 changed files with 742 additions and 215 deletions

View File

@@ -4,13 +4,11 @@ import React, { PureComponent } from 'react';
// Types
import { InputOptions } from './types';
import { DataSourcePluginOptionsEditorProps, DataSourceSettings, TableInputCSV } from '@grafana/ui';
import { DataSourcePluginOptionsEditorProps, TableInputCSV } from '@grafana/ui';
import { DataFrame, MutableDataFrame } from '@grafana/data';
import { dataFrameToCSV } from './utils';
type InputSettings = DataSourceSettings<InputOptions>;
interface Props extends DataSourcePluginOptionsEditorProps<InputSettings> {}
interface Props extends DataSourcePluginOptionsEditorProps<InputOptions> {}
interface State {
text: string;