I am new to ReactJS and JSX and I am having a little problem with the code below.
I am trying to add multiple classes to the className attribute on eac
className
I use ES6 template literals. For example:
ES6
const error = this.state.valid ? '' : 'error' const classes = `form-control round-lg ${error}`
And then just render it:
One-liner version: