mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
7 lines
311 B
TypeScript
7 lines
311 B
TypeScript
import { ReactPanelPlugin } from '@grafana/ui';
|
|
import { GraphPanelEditor } from './GraphPanelEditor';
|
|
import { GraphPanel } from './GraphPanel';
|
|
import { Options, defaults } from './types';
|
|
|
|
export const reactPanel = new ReactPanelPlugin<Options>(GraphPanel).setDefaults(defaults).setEditor(GraphPanelEditor);
|