UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

12 lines (11 loc) 233 B
/// <reference types="react" /> interface MenuOption { id: string; label: string; action: () => void; disabled?: boolean; } export declare const PortalMenuOptions: React.FC<{ options: MenuOption[]; }>; export {};