Using the css-in-js method to add classes to a react component, how do I add multiple components?
Here is the classes variable:
const styles = theme
As already mentioned, you can use string interpolation
className={`${this.props.classes.container} ${this.props.classes.spacious}`}
And you can try classnames library, https://www.npmjs.com/package/classnames
classnames