什么是classSet?

时间:2016-09-19 12:50:57

标签: reactjs

请解释一下......

<div className={classSet({
       'Cell': true,
       'Cell--highlighted': highlighted,
       'Cell--hovered': hovered
})}></div>

1 个答案:

答案 0 :(得分:2)

对象classSet中的键是css类的名称。该值是一个逻辑表达式 - 如果为true - 将向DOM元素添加class,如果为false,则不会。

现在不推荐使用此库,请看: https://github.com/JedWatson/classnames