React.useEffect(() => {
        window.addEventListener("focus", handleFocus);
        window.addEventListener("blur", handleFocus);
        return () => {
            window.removeEventListener("focus", handleFocus);