import { PropsWithChildren } from 'react' import { cn } from 'ui' interface ProductMenuBarProps { title: string className?: string } const ProductMenuBar = ({ title, children, className }: PropsWithChildren) => { return (

{title}

{children}
) } export default ProductMenuBar