export default function Modal({ open, onClose, children }) { return (
e.stopPropagation()} className={`shadow rounded-xl p-6 transition-all ${ open ? "scale-125 opacity-100" : "scale-100 opacity-0" }`} > {children}
); }