mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
22 lines
455 B
TypeScript
22 lines
455 B
TypeScript
import React, { PureComponent } from 'react';
|
|
import { PanelProps } from 'app/features/dashboard/dashgrid/DataPanel';
|
|
|
|
export class ReactTestPanel extends PureComponent<PanelProps> {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
const { data } = this.props;
|
|
let value = 0;
|
|
|
|
if (data.length) {
|
|
value = data[0].value;
|
|
}
|
|
|
|
return <h2>I am a react value: {value}</h2>;
|
|
}
|
|
}
|
|
|
|
export { ReactTestPanel as PanelComponent };
|