module.tsx 197 B

123456
  1. import { PanelPlugin } from '@grafana/data';
  2. import { NodeGraphPanel } from './NodeGraphPanel';
  3. import { Options } from './types';
  4. export const plugin = new PanelPlugin<Options>(NodeGraphPanel);