import React, { PureComponent } from 'react'; import { PanelProps } from 'app/features/dashboard/dashgrid/DataPanel'; export class Text2 extends PureComponent { constructor(props) { super(props); } render() { const { data } = this.props; let value = 0; if (data.length) { value = data[0].value; } return

Graph Panel! {value}

; } } export { Text2 as PanelComponent };