Scroll to top of page on component initial load

PHOTO EMBED

Thu Jul 27 2023 07:24:12 GMT+0000 (Coordinated Universal Time)

Saved by @JISSMONJOSE #react.js #css #javascript

  // Scroll to top of page on component mount
  React.useEffect(() => {
    window.scrollTo(0, 0);
  }, []);
content_copyCOPY