import React from 'react'; import styles from './styles.module.css'; /** * @typedef {Object} ModalProps * @property {boolean} isOpen - Indicates if the modal is open. * @property {() => void} onClose - Function to call when the modal is closed. */ /** * @param {ModalProps} props */ export const Modal = ({ isOpen, onClose, children }) => { if (!isOpen) { return null; } return (