Add React container

This commit is contained in:
Tobias Skarhed 2018-08-13 15:51:58 +02:00
parent e6057e08de
commit 472b880939

View File

@ -0,0 +1,20 @@
import React from 'react';
import HeatmapRenderer from './rendering';
import { HeatmapCtrl } from './heatmap_ctrl';
export class HeatmapRenderContainer extends React.Component {
renderer: any;
constructor(props) {
super(props);
this.renderer = HeatmapRenderer(
this.props.scope,
this.props.children[0],
[],
new HeatmapCtrl(this.props.scope, {}, {})
);
}
render() {
return <div />;
}
}