mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Chore: Move from master branch to main Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * CI: Upgrade build pipeline tool to v2 Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
34 lines
839 B
TypeScript
34 lines
839 B
TypeScript
// Libraries
|
|
import React, { PureComponent } from 'react';
|
|
import { LinkButton } from '@grafana/ui';
|
|
|
|
// 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 reproducible test environment.
|
|
<br />
|
|
<br />
|
|
<LinkButton
|
|
variant="secondary"
|
|
href="https://github.com/grafana/grafana/tree/main/devenv"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
GitHub
|
|
</LinkButton>
|
|
<br />
|
|
</div>
|
|
);
|
|
}
|
|
}
|