grafana/public/app/plugins/datasource/testdata/TestInfoTab.tsx
Arve Knudsen c2c1ec7d0f
Chore: Move from master to main branch (#33693)
* 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>
2021-05-06 16:29:29 +02:00

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>
);
}
}