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.
 
 
 
 

12 lines
359 B

import React from 'react';
import { PanelProps } from '@grafana/data';
import { PanelOptions } from '../types';
interface Props extends PanelProps<PanelOptions> {}
export function Panel({ options, data, width, height, timeZone, timeRange, onChangeTimeRange }: Props) {
return (
// TODO: implement chartwerk panel
<div>Chartwerk panel</div>
);
}