import { memo } from 'react' import { PromptMenuItem } from './prompt-option' type PromptMenuProps = { startIndex: number selectedIndex: number | null options: any[] onClick: (index: number, option: any) => void onMouseEnter: (index: number, option: any) => void } const PromptMenu = ({ startIndex, selectedIndex, options, onClick, onMouseEnter, }: PromptMenuProps) => { return (