add two classes to div with .module in react js code example
Example 1: jsx classname multiple
// Using String Templates
<div className={`${this.state.className} ${this.props.content.divClassName}}`>
...
</div>
// OR
// Using An Array
<div className={[this.state.className, this.props.content.divClassName].join(" ")}>
...
</div>
Example 2: add 2 class names react
<input className={`form-control round-lg ${this.state.valid ? '' : 'error'}`} />