Merge pull request #2990 from jeffkole/patch-1

Documents that `classSet` concatenates its arguments
This commit is contained in:
Lee Byron
2015-01-30 21:45:54 -05:00
+13
View File
@@ -42,4 +42,17 @@ render: function() {
When using `classSet()`, pass an object with keys of the CSS class names you might or might not need. Truthy values will result in the key being a part of the resulting string.
`classSet()` also lets pass class names in as arguments that are then concatenated for you:
```javascript
render: function() {
var cx = React.addons.classSet;
var importantModifier = 'message-important';
var readModifier = 'message-read';
var classes = cx('message', importantModifier, readModifier);
// Final string is 'message message-important message-read'
return <div className={classes}>Great, I'll be there.</div>;
}
```
No more hacky string concatenations!