react - App.tsx

PHOTO EMBED

Mon Apr 29 2024 12:33:29 GMT+0000 (Coordinated Universal Time)

Saved by @Jacko

 useEffect(() => {
    window.addEventListener("message", function (event) {
      if (event.origin === "http://localhost:3004") {
        if (event.data) {
          localStorage.setItem("user", JSON.stringify(event.data));
        } else {
          localStorage.removeItem("user");
        }
      }
    });
  }, []);
content_copyCOPY