Backstage
    Preparing search index...

    Interface SubmenuTriggerProps

    interface SubmenuTriggerProps {
        children: ReactElement<any, string | JSXElementConstructor<any>>[];
        delay?: number;
    }

    Hierarchy

    • SubmenuTriggerProps
      • SubmenuTriggerProps
    Index

    Properties

    Properties

    children: ReactElement<any, string | JSXElementConstructor<any>>[]

    The contents of the SubmenuTrigger. The first child should be an Item (the trigger) and the second child should be the Popover (for the submenu).

    delay?: number

    The delay time in milliseconds for the submenu to appear after hovering over the trigger.

    200