'use client' import type React from 'react' import { cn } from '../../utils' import { DrawerContent, DrawerTitle, DrawerHandle } from '../Drawer/Drawer' const MobileMenuDrawerContent: React.FC< React.ComponentPropsWithoutRef > = ({ className, children, ...props }) => (
Menu {children}
) MobileMenuDrawerContent.displayName = 'MobileMenuDrawerContent' export { MobileMenuDrawerContent }