import { Menu } from '@headlessui/react'; import { ChevronDownIcon } from '@heroicons/react/solid'; import * as React from 'react'; export interface IMenuButtonProps { label: string; title: string; } export const MenuButton: React.FunctionComponent = ({label, title}: React.PropsWithChildren) => { return (
{label}: {title}
); };