Mono - index.tsx

PHOTO EMBED

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

Saved by @Jacko

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