import * as React from 'react' import { Menu } from '@headlessui/react' function classNames(...classes) { return classes.filter(Boolean).join(' ') } export default function Home() { return (
) } function Dropdown() { function resolveClass({ active, disabled }) { return classNames( 'block w-full text-left px-4 py-2 text-sm leading-5 text-gray-700', active && 'bg-gray-100 text-gray-900', disabled && 'cursor-not-allowed opacity-50' ) } return (
Options

Signed in as

tom@example.com

Account settings {data => ( Support )} New feature (soon) License
Sign out
) }