Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript React Basics (2018) Understanding State Creating the Application State

Uche Onuekwusi
Uche Onuekwusi
17,817 Points

Since Player component renders the counter component, how come the state was created in the player component.

Since Player component renders the counter component, how come the state was created in the player component.

1 Answer

If you follow through the video, a Counter component was created that manages its own state.

...
class Counter extends React.Component {
    constructor() {
        super();
        this.state = { score : 0 }
    }

    handleIncrememtScore = () => {
        this.setState(prevState => ({ score: prevState.score + 1 }))
    }

    handleDecrememtScore = () => {
        this.setState(prevState => ({ score: prevState.score - 1 }))
    }

    render () {
        const { score } = this.state;
        return (
            <div className="counter">
                <button className="counter-action decrement" onClick={this.handleDecrememtScore}> - </button>
                <span className="counter-score"> {score} </span>
                <button className="counter-action increment" onClick={this.handleIncrememtScore}> + </button>
            </div>
        )
    }
}

const Player = ({playerName}) => {
    return (
        <div className="player">
            <span className="player-name">{playerName}</span>

            <Counter />
        </div>
    )
}

...