mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Add React container
This commit is contained in:
parent
e6057e08de
commit
472b880939
20
public/app/plugins/panel/heatmap/HeatmapRenderContainer.tsx
Normal file
20
public/app/plugins/panel/heatmap/HeatmapRenderContainer.tsx
Normal 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 />;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user