I think my code is correct but not passing the third challenge

Tell us what’s happening:
Describe your issue in detail here.
Am unable to pass the third challenge ** Typing in the input element should update the state and the value of the input, and the p element should render this state as you type.**

the p tag is rendering when i type in the form myself
help what am i doing wrong.

  **Your code so far**

class ControlledInput extends React.Component {
constructor(props) {
  super(props);
  this.state = {
    input: ''
  };
  // Change code below this line
this.handleChange = this.handleChange.bind(this);
  // Change code above this line
}
// Change code below this line
handleChange(event){
  this.setState({
    input: event.target.value
  })
}
// Change code above this line
render() {
  return (
    <div>
      { /* Change code below this line */}
      <input value={this.input} onChange={this.handleChange} />
      { /* Change code above this line */}
      <h4>Controlled Input:</h4>
      <p>{this.state.input}</p>
    </div>
  );
}
};
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0

Challenge: Create a Controlled Input

Link to the challenge:

You are super close, just one tiny little omission. Remember, you want the value attribute on <input> to be set to the input property of the state.

Thanks just passed it now.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.