import React from 'react'; import { MenuProps } from '../Menu'; export const Menu = ({ className, isPlain, isScrollable, style, onSelect, ...props }: MenuProps) => ( <>
{`isPlain: ${isPlain}`}
{`isScrollable: ${isScrollable}`}
{`minWidth: ${style?.['--pf-v5-c-menu--MinWidth']}`}
> );