import { FC, PropsWithChildren } from "react"; export const DropdownMenu: FC = ({ children }) => { return
{children}
; };