module.tsx 347 B

12345678910
  1. import { ReactPanelPlugin } from '@grafana/ui';
  2. import { GaugePanelEditor } from './GaugePanelEditor';
  3. import { GaugePanel } from './GaugePanel';
  4. import { GaugeOptions, defaults } from './types';
  5. export const reactPanel = new ReactPanelPlugin<GaugeOptions>(GaugePanel);
  6. reactPanel.setEditor(GaugePanelEditor);
  7. reactPanel.setDefaults(defaults);