7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
import { PanelPlugin } from '@grafana/data';
|
|
|
|
import { GettingStarted } from './GettingStarted';
|
|
|
|
// Simplest possible panel plugin
|
|
export const plugin = new PanelPlugin(GettingStarted).setNoPadding();
|