import React, { PureComponent } from 'react'; import { PanelEditorProps, PanelOptionsGrid } from '@grafana/ui'; import ValueOptions from './ValueOptions'; import { PiechartOptions } from './types'; export default class PiechartPanelOptions extends PureComponent> { render() { const { onChange, options } = this.props; return ( <> ); } }