We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 215988f commit c329eb6Copy full SHA for c329eb6
docs/docs/09.3-class-name-manipulation.md
@@ -22,7 +22,7 @@ render: function() {
22
classString += ' message-read';
23
}
24
// 'message message-important message-read'
25
- return <div className={classString}>Great, I'll be there.</div>
+ return <div className={classString}>Great, I'll be there.</div>;
26
27
```
28
@@ -35,9 +35,9 @@ render: function() {
35
'message': true,
36
'message-important': this.props.isImportant,
37
'message-read': this.props.isRead
38
- })
+ });
39
// same final string, but much cleaner
40
- return <div className={classes}>Great, I'll be there.</div>
+ return <div className={classes}>Great, I'll be there.</div>;
41
42
43
0 commit comments