grafana/public/app/plugins/panel/text2/module.tsx
2018-12-23 09:15:32 +01:00

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