3

PHOTO EMBED

Sat Oct 15 2022 16:10:15 GMT+0000 (Coordinated Universal Time)

Saved by @Vrushabh_123

function TheComponent() {
  useEffect(() => {
    // do anything you want to do here.
  }, []) // <-- This is where you put the dependency array

  return <div>.....</div>
}
content_copyCOPY