import React from 'react'; import { Button, ModalsController } from '@grafana/ui'; import { DashboardModel } from '../../state'; import { DeleteDashboardModal } from './DeleteDashboardModal'; type Props = { dashboard: DashboardModel; }; export const DeleteDashboardButton = ({ dashboard }: Props) => ( {({ showModal, hideModal }) => ( )} );