import { ReactNode } from 'react' import './styles.css' interface ModalProps { children: ReactNode open?: boolean onClose?: () => void } function Modal({ open, children, onClose }: ModalProps): JSX.Element { const handleClose = () => { onClose?.() } if (!open) return <>> return (