UNPKG

preact-context-menu

Version:
9 lines (8 loc) 244 B
import { h, ComponentChildren } from "preact"; declare type MenuItemProps = { children: ComponentChildren; data?: any; disabled?: boolean; }; declare const MenuItem: (props: MenuItemProps) => h.JSX.Element; export default MenuItem;