import React, { type ReactNode, type HTMLAttributes } from 'react' export interface ModalBodyProps extends HTMLAttributes { /** * Children or function as a children */ children: ReactNode } const ModalBody = ({ children, ...otherProps }: ModalBodyProps) => (
{children}
) export default ModalBody