freeCodeCamp/guide/english/certifications/front-end-libraries/react/use-the-lifecycle-method-co.../index.md

899 B

title
Use the Lifecycle Method componentDidMount

Use the Lifecycle Method componentDidMount

This challenges introduces the componentDidMount Lifecycle method. This is used to set state after a giventime period.

The syntax for the method is:

componentDidMount() {
    setTimeout( () => {
      this.setState({
        one: 1,
        two: false
      });
    }, interval);
  }

where one and two are states you want to set after intervalms.

Hint

Use

this.state.stateName

and change stateName as required.

Solution

Change

render() {
    return (
      <div>
        <h1>Active Users: { /* change code here */ }</h1>
      </div>
    );
  }

to

render() {
    return (
      <div>
        <h1>Active Users: { this.state.activeUsers }</h1>
      </div>
    );
  }