興味のある方のために、私はcssモジュールを使用してcssモジュールを反応させたときに同じ問題に遭遇しました。
ほとんどのコンポーネントにはcssモジュールスタイルが関連付けられています。この例では、Promo親コンポーネントと同様に、私のボタンには独自のcssファイルがあります。しかし、私はにいくつかの追加のスタイルを渡したいボタンからプロモ
したがって、可能style
なボタンは次のようになります。
Button.js
import React, { Component } from 'react'
import CSSModules from 'react-css-modules'
import styles from './Button.css'
class Button extends Component {
render() {
let button = null,
className = ''
if(this.props.className !== undefined){
className = this.props.className
}
button = (
<button className={className} styleName='button'>
{this.props.children}
</button>
)
return (
button
);
}
};
export default CSSModules(Button, styles, {allowMultiple: true} )
上記のButtonコンポーネントでは、Button.cssスタイルが一般的なボタンスタイルを処理します。この例では、.button
クラス
次に、Buttonを使用するコンポーネントで、ボタンの位置なども変更したい場合は、追加のスタイルを設定Promo.css
して、className
小道具として通過させることができます。この例では、再び.button
クラスを呼び出しました。私はそれを何とでも呼べたでしょうpromoButton
。
もちろんcssモジュールの場合、このクラスは.Promo__button___2MVMD
ボタン1のようになりますが.Button__button___3972N
Promo.js
import React, { Component } from 'react';
import CSSModules from 'react-css-modules';
import styles from './Promo.css';
import Button from './Button/Button'
class Promo extends Component {
render() {
return (
<div styleName='promo' >
<h1>Testing the button</h1>
<Button className={styles.button} >
<span>Hello button</span>
</Button>
</div>
</Block>
);
}
};
export default CSSModules(Promo, styles, {allowMultiple: true} );