mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
15 lines
270 B
TypeScript
15 lines
270 B
TypeScript
import React, { PureComponent } from 'react';
|
|
import { PanelProps } from '@grafana/ui';
|
|
|
|
export class Text2 extends PureComponent<PanelProps> {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return <h2>Text Panel!</h2>;
|
|
}
|
|
}
|
|
|
|
export { Text2 as Panel };
|