React-Create-Portal
React-Create-Portal
js
useEffect(() => {
};
window.addEventListener("keydown", handleEsc);
}, [onClose]);
return ReactDOM.createPortal(
<div
onClick={onClose}
style={{
position: "fixed",
top: 0,
left: 0,
right: 0,
bottom: 0,
backgroundColor: "rgba(0,0,0,0.5)",
zIndex: 9999,
}}
>
<div
style={{
background: "#fff",
padding: "20px",
width: "300px",
borderRadius: "8px",
}}
>
{children}
</div>
</div>,
document.getElementById("modal-root")
);