import { NestableDropdownContextProvider } from '@/shared/context/nestable-dropdown-context' import { FC, HTMLProps } from 'react' export const MenuBar: FC & { id: string }> = ({ children, id, ...props }) => { return (
{children}
) }