Skip to content

Commit

Permalink
Add closing </p> tag (#6394)
Browse files Browse the repository at this point in the history
  • Loading branch information
mixlaab authored Oct 31, 2023
1 parent 9c60167 commit f949428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/reference/react/Component.md
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ class Form extends Component {
return (
<>
<input value={this.state.name} onChange={this.handleNameChange} />
<p>Hello, {this.state.name}.
<p>Hello, {this.state.name}.</p>
</>
);
}
Expand Down

0 comments on commit f949428

Please sign in to comment.