mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
poc: began react panel experiments
This commit is contained in:
13
public/app/plugins/panel/text2/module.tsx
Normal file
13
public/app/plugins/panel/text2/module.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
|
||||
export class ReactTestPanel extends React.Component<any, any> {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render() {
|
||||
return <h2>Panel content</h2>;
|
||||
}
|
||||
}
|
||||
|
||||
export { ReactTestPanel as PanelComponent };
|
||||
Reference in New Issue
Block a user