import { PanelOptions } from '../types'; import { PanelProps } from '@grafana/data'; import React from 'react'; import * as _ from 'lodash'; interface Props extends PanelProps { } export function Panel({ options, data, width, height, timeRange, onChangeTimeRange }: Props) { console.log('panel',options, data); return (
test
); }