import { Menu } from '@headlessui/react'; import * as React from 'react'; export interface IMenuItemProps { title: string; value: any; isCurrent: boolean; onClick: (value: any) => void; } export const MenuItem: React.FunctionComponent = ({title, value, isCurrent, onClick}: React.PropsWithChildren) => { return ( ); };