Panel for exporting metrics from Grafana dashboards.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
381 B

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