mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
8 lines
312 B
TypeScript
8 lines
312 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).setDefaults(defaults).setEditor(TablePanelEditor);
|