import { Button, Dropdown, type MenuProps } from "antd" import { useState } from "react"; export interface IMenu { key: string; label: string; } interface IWidget { items: IMenu[]; icon?: React.ReactNode; text?: string; initKey?: string; onChange?: (key: string) => void; } const Options = ({ items, icon, text, initKey = "1", onChange }: IWidget) => { const [currKey, setCurrKey] = useState(initKey); const currValue = items.find( (item) => item.key === (currKey ?? initKey) )?.label; const onClick: MenuProps["onClick"] = ({ key }) => { if (onChange) { onChange(key); } setCurrKey(key); }; return ( ); }; export default Options;