wip: another wip commit

This commit is contained in:
Torkel Ödegaard
2019-01-14 15:44:58 +01:00
parent 23f84ba5c5
commit 0260c779e8
2 changed files with 31 additions and 6 deletions

View File

@@ -0,0 +1,30 @@
// Libraries
import React, { PureComponent } from 'react';
// Utils & Services
import { AngularComponent, getAngularLoader } from 'app/core/services/AngularLoader';
// Types
import { PanelModel } from '../panel_model';
import { DashboardModel } from '../dashboard_model';
interface Props {
panel: PanelModel;
dashboard: DashboardModel;
}
interface State {
}
export class VisualizationTab extends PureComponent<Props, State> {
element: HTMLElement;
angularQueryEditor: AngularComponent;
constructor(props) {
super(props);
}
render() {
}
}