docs classSet semicolons missing

This commit is contained in:
Cheng Lou
2013-11-19 23:28:27 +01:00
committed by Vjeux
parent 215988f879
commit c329eb6335
+3 -3
View File
@@ -22,7 +22,7 @@ render: function() {
classString += ' message-read';
}
// 'message message-important message-read'
return <div className={classString}>Great, I'll be there.</div>
return <div className={classString}>Great, I'll be there.</div>;
}
```
@@ -35,9 +35,9 @@ render: function() {
'message': true,
'message-important': this.props.isImportant,
'message-read': this.props.isRead
})
});
// same final string, but much cleaner
return <div className={classes}>Great, I'll be there.</div>
return <div className={classes}>Great, I'll be there.</div>;
}
```