import React from 'react'; import { MenuProps } from '../Menu'; export const Menu = ({ className, isPlain, isScrollable, style, onSelect, ...props }: MenuProps) => ( <>
{'Mock item'}

{`isPlain: ${isPlain}`}

{`isScrollable: ${isScrollable}`}

{`minWidth: ${style?.['--pf-v5-c-menu--MinWidth']}`}

);