Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

41 lines
702 B
Markdown

---
title: Render State in the User Interface
---
# Render State in the User Interface
In the challenge, you will need to render a state value in `<h1>` tag, pretty simple.
---
## Hints
### Hint 1
Just make a `<h1>` tag and render `this.state.name` between tag.
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```jsx
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
name: 'freeCodeCamp'
}
}
render() {
return (
<div>
{ /* change code below this line */ }
<h1>{this.state.name}</h1>
{ /* change code above this line */ }
</div>
);
}
};
```
</details>