Reactjs – How do you close dialog when clicking outside the modal in React
I have the following "simple" Modal React component and I'm trying to make it close itself when I click outside the dialog element i.e. the backdrop: import { useState, useRef, useEffect } from "react"; export default function Modal({ isOpen, onClose,…