示例
代码语言:javascript
复制1<Button className={classnames({
2 //这里可以根据各属性动态添加,如果属性值为true则为其添加该类名,如果值为false,则不添加。这样达到了动态添加class的目的
3 base: true,
4 inProgress: this.props.store.submissionInProgress,
5 error: this.props.store.errorOccurred,
6 disabled: this.props.form.valid,
7 })}>
8<Button/>