QueryEditorRow.tsx 566 B

123456789101112131415161718192021222324252627282930
  1. // Libraries
  2. import React, { PureComponent } from 'react';
  3. // Utils & Services
  4. import { AngularComponent, getAngularLoader } from 'app/core/services/AngularLoader';
  5. // Types
  6. import { PanelModel } from '../panel_model';
  7. import { DashboardModel } from '../dashboard_model';
  8. interface Props {
  9. panel: PanelModel;
  10. dashboard: DashboardModel;
  11. }
  12. interface State {
  13. }
  14. export class VisualizationTab extends PureComponent<Props, State> {
  15. element: HTMLElement;
  16. angularQueryEditor: AngularComponent;
  17. constructor(props) {
  18. super(props);
  19. }
  20. render() {
  21. }
  22. }