mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
14 lines
250 B
TypeScript
14 lines
250 B
TypeScript
import React from 'react';
|
|
|
|
export class ReactTestPanel extends React.Component<any, any> {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return <h2>I am a react panel, haha!</h2>;
|
|
}
|
|
}
|
|
|
|
export { ReactTestPanel as PanelComponent };
|