module.tsx 238 B

12345678910111213
  1. import React from 'react';
  2. export class ReactTestPanel extends React.Component<any, any> {
  3. constructor(props) {
  4. super(props);
  5. }
  6. render() {
  7. return <h2>Panel content</h2>;
  8. }
  9. }
  10. export { ReactTestPanel as PanelComponent };