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

Signed in as

tom@example.com

Account settings Support New feature (soon) License
Sign out
) }