import React from "react"; import style from "./style.module.scss"; type ModalProps = { isOpen: boolean; onClose: () => void; title?: string; children?: React.ReactNode; }; const Modal: React.FC = ({ isOpen, onClose, title, children }) => { if (!isOpen) return null; return (

{title}

{children}
); }; export default Modal;