2019-05-13 22:55:49 -07:00
|
|
|
// Libraries
|
|
|
|
|
import React, { PureComponent } from 'react';
|
2021-04-23 10:06:42 +02:00
|
|
|
import { LinkButton } from '@grafana/ui';
|
2019-05-13 22:55:49 -07:00
|
|
|
|
|
|
|
|
// Types
|
2020-01-15 19:42:44 +01:00
|
|
|
import { PluginConfigPageProps, DataSourcePluginMeta, DataSourceJsonData } from '@grafana/data';
|
2019-05-13 22:55:49 -07:00
|
|
|
|
2020-01-15 19:42:44 +01:00
|
|
|
interface Props extends PluginConfigPageProps<DataSourcePluginMeta<DataSourceJsonData>> {}
|
2019-05-13 22:55:49 -07:00
|
|
|
|
|
|
|
|
export class TestInfoTab extends PureComponent<Props> {
|
|
|
|
|
constructor(props: Props) {
|
|
|
|
|
super(props);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2020-10-07 12:29:30 +02:00
|
|
|
See github for more information about setting up a reproducible test environment.
|
2019-05-13 22:55:49 -07:00
|
|
|
<br />
|
|
|
|
|
<br />
|
2021-04-23 10:06:42 +02:00
|
|
|
<LinkButton
|
|
|
|
|
variant="secondary"
|
2021-05-06 16:29:29 +02:00
|
|
|
href="https://github.com/grafana/grafana/tree/main/devenv"
|
2019-09-03 09:29:02 +01:00
|
|
|
target="_blank"
|
2020-11-18 15:36:35 +01:00
|
|
|
rel="noopener noreferrer"
|
2019-09-03 09:29:02 +01:00
|
|
|
>
|
2020-07-22 11:12:50 -04:00
|
|
|
GitHub
|
2021-04-23 10:06:42 +02:00
|
|
|
</LinkButton>
|
2019-05-13 22:55:49 -07:00
|
|
|
<br />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|