import * as React from 'react'; import { Menu, type MenuProps, type PopupState } from '@elementor/ui'; import { MenuContextProvider } from '../../contexts/menu-context'; export type PopoverMenuProps = MenuProps & { popupState?: PopupState; }; export default function PopoverMenu( { children, popupState, ...props }: PopoverMenuProps ) { return ( { children } ); }