Help please...Render State in the User Interface Another Way

Tell us what’s happening:

Your code so far


class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      name: 'freeCodeCamp'
    }
  }
  render() {
    // change code below this line
    
    // change code above this line
    return (
      <div>
      { /* change code below this line */ }
        <h1> {name} </h1>
        { /* change code above this line */         }
      </div>
    );
  }
};

Your browser information:

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

Link to the challenge:

what is your question? what have you tried?

I will try to re post.

you can also just add the information bellow :3 freeCodeCamp Challenge Guide: Render State in the User Interface Another Way

Whats wrong with my code below…?

class MyComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
name: ‘freeCodeCamp’
}
}
render() {
// change code below this line

// change code above this line
return (
  <div>
  { /* change code below this line */ }
    <h1> {name} </h1>
    { /* change code above this line */         }
  </div>
);

}
};

you also need to change the other line.

the h1 tags and name are fine
a hint they gave:
Remember that how you can access the property of a state.

i am having the same problem,which other line i’m i supposed to change after adding the <h1> {name} </h1> .
it keeps telling me this below…
he rendered h1 header should contain text rendered from the component’s state.

You need to access the state object in that component, there isn’t a variable called name anywhere on your code, you need that and you need its value to be the value of the name property in the state

It finally worked. I didnt know why it was not working before as I was doing everything correctly!!

1 Like