import React, { FC } from 'react'; import { DashboardModel, PanelModel } from '../../state'; import { PanelHeaderMenu } from './PanelHeaderMenu'; import { PanelHeaderMenuProvider } from './PanelHeaderMenuProvider'; interface Props { panel: PanelModel; dashboard: DashboardModel; onClose: () => void; } export const PanelHeaderMenuWrapper: FC = ({ panel, dashboard }) => { return ( {({ items }) => { return ; }} ); };