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