import { useCallback } from "react"; const Modal = ({ isOpen, onClose, title, body, disabled, size="md", position="top", }) => { const handleClose = useCallback(() => { if (disabled) return; onClose(); }, [disabled, onClose]); if (!isOpen) return null; return (