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