ReactJS How to update specific components only on page load

109 Views Asked by At

In ReactJS I created an analogue clock as a component that updates every second using: -

componentDidMount () {
    setInterval(()=> {
      this.setClock()
    }, 1000)
  }

I also have a component that updates on page load with random names. Since I have added the analogue clock on an interval timer, everything that would reload on refresh/page load is updating every second. How do I render my other components only on initial page load?

0

There are 0 best solutions below