poc: began react panel experiments

This commit is contained in:
Torkel Ödegaard
2018-01-02 14:52:30 +01:00
parent f049fc4816
commit 13efc529ec
6 changed files with 129 additions and 12 deletions

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