mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Performance/Webpack: Introduces more aggressive code-splitting and other perf improvements - Introduces dynamic imports for built-in plugins - Uses dynamic imports for various packages (rst2html, brace) - Introduces route-based dynamic imports - Splits angular and moment into separate bundles
34 lines
799 B
TypeScript
34 lines
799 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"
|
|
rel="noopener"
|
|
>
|
|
Github
|
|
</a>
|
|
<br />
|
|
</div>
|
|
);
|
|
}
|
|
}
|