Skip to content

Commit 53a6000

Browse files
bayprogrammergaearon
authored andcommitted
Add semicolon for example code style consistency (reactjs#575)
1 parent 91ac3d8 commit 53a6000

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/conditional-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function WarningBanner(props) {
209209
class Page extends React.Component {
210210
constructor(props) {
211211
super(props);
212-
this.state = {showWarning: true}
212+
this.state = {showWarning: true};
213213
this.handleToggleClick = this.handleToggleClick.bind(this);
214214
}
215215

0 commit comments

Comments
 (0)