mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
29 lines
735 B
TypeScript
29 lines
735 B
TypeScript
|
|
// Libraries
|
||
|
|
import React, { PureComponent } from 'react';
|
||
|
|
|
||
|
|
// Types
|
||
|
|
import { PluginConfigPageProps, DataSourcePlugin } from '@grafana/ui';
|
||
|
|
import { TestDataDatasource } from './datasource';
|
||
|
|
|
||
|
|
interface Props extends PluginConfigPageProps<DataSourcePlugin<TestDataDatasource>> {}
|
||
|
|
|
||
|
|
export class TestInfoTab extends PureComponent<Props> {
|
||
|
|
constructor(props: Props) {
|
||
|
|
super(props);
|
||
|
|
}
|
||
|
|
|
||
|
|
render() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
See github for more information about setting up a reproducable test environment.
|
||
|
|
<br />
|
||
|
|
<br />
|
||
|
|
<a className="btn btn-inverse" href="https://github.com/grafana/grafana/tree/master/devenv" target="_blank">
|
||
|
|
Github
|
||
|
|
</a>
|
||
|
|
<br />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|