React | How to detect Page Refresh (F5)

공부는 혼자하는 거·2021년 8월 21일
0

React Tip

목록 보기
14/24
useEffect(() => {
    window.addEventListener("beforeunload", alertUser);
    return () => {
      window.removeEventListener("beforeunload", alertUser);
    };
  }, []);
  const alertUser = (e) => {
    e.preventDefault();
    e.returnValue = "";
  };

https://stackoverflow.com/questions/50026028/react-how-to-detect-page-refresh-f5

profile
시간대비효율

0개의 댓글