Const
Renders an actions context menu.
const [referenceElement, setReferenceElement] = useState<HTMLElement>();<div ref={setReferenceElement as React.LegacyRef<HTMLDivElement>}> <InlineMenu referenceElement={referenceElement} actions={[{ label: 'Action Label', onActionSelected={actionSelectedHandler} }]} /></div> Copy
const [referenceElement, setReferenceElement] = useState<HTMLElement>();<div ref={setReferenceElement as React.LegacyRef<HTMLDivElement>}> <InlineMenu referenceElement={referenceElement} actions={[{ label: 'Action Label', onActionSelected={actionSelectedHandler} }]} /></div>
Renders an actions context menu.