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