Lifecycle: ComponentDidMount()

Runs after the component output has been rendered to the DOM.

ComponentDidMount() {
    this.timerID = setInterval(
      () => this.tick(),
      1000
    );
  }

Lifecycle: ComponentDidMount() — Structure map

Clickable & Draggable!

Lifecycle: ComponentDidMount() — Related pages: