import { Menu, MenuButton, MenuItem, MenuItems } from '@headlessui/react'; import { ChevronDownIcon } from '@heroicons/react/24/outline'; type ListItem = { href: string; label: string; }; type PrimaryDropdownProps = { items: ListItem[]; title: string; }; /** * ### [WIP] No utilizar!! */ const PrimaryDropdown: React.FC = ({ items, title }) => { return ( {title} {items.map(item => ( {item.label} ))} ); }; export default PrimaryDropdown;