import { Menu, Transition } from "@headlessui/react"; import { EllipsisVerticalIcon } from "@heroicons/react/20/solid"; import { Fragment } from "react"; function classNames(...classes: string[]) { return classes.filter(Boolean).join(" "); } export default () => { return (
Open options
{({ active }) => ( Pricing )} {({ active }) => ( Feed )} {({ active }) => ( Extension )} {({ active }) => ( GPTs )} {({ active }) => ( Dashboard )}
); };