css-in-jsメソッドを使用してreactコンポーネントにクラスを追加するには、複数のコンポーネントを追加するにはどうすればよいですか?
クラス変数は次のとおりです。
const styles = theme => ({
container: {
display: 'flex',
flexWrap: 'wrap'
},
spacious: {
padding: 10
},
});
これが私がそれをどのように使用したかです:
return (
<div className={ this.props.classes.container }>
上記は機能しますが、classNames
npmパッケージを使用せずに両方のクラスを追加する方法はありますか?何かのようなもの:
<div className={ this.props.classes.container + this.props.classes.spacious}>