mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 00:37:04 -06:00
3f957a3735
* Change typyings of plugins config pages * Update plugin config page types of core plugins
33 lines
778 B
TypeScript
33 lines
778 B
TypeScript
// Libraries
|
|
import React, { PureComponent } from 'react';
|
|
|
|
// Types
|
|
import { PluginConfigPageProps, DataSourcePluginMeta, DataSourceJsonData } from '@grafana/data';
|
|
|
|
interface Props extends PluginConfigPageProps<DataSourcePluginMeta<DataSourceJsonData>> {}
|
|
|
|
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"
|
|
rel="noopener"
|
|
>
|
|
Github
|
|
</a>
|
|
<br />
|
|
</div>
|
|
);
|
|
}
|
|
}
|