import { Menu, Transition } from '@headlessui/react' import { EllipsisVerticalIcon } from '@heroicons/react/20/solid' import { Fragment } from 'react' type Props = { onDeleteClick: () => void } const ModelActionMenu: React.FC = ({ onDeleteClick }) => ( Open options {({ active }) => ( )} ) export default ModelActionMenu