import { ReactNode } from "react"; export const ModalBody = ({ children }: { children: ReactNode }) => { return
{children}
; };