import { Fragment } from 'react' import { Menu, Transition } from '@headlessui/react' import clsx from 'clsx' export function MenuButton(props: { buttonContent: any menuItems: { name: string; href: string }[] className?: string }) { const { buttonContent, menuItems, className } = props return (
) }