私はそれがオブジェクトのwebpack sass loaderを使用せずに、sassクラス名をそのまま使用できますか?
import style from './style.scss'
class MyComponent extends Component {
render() {
return <button className="my-button">OK</button>;
}
}
以下のようなものであるように、通常我々がstyle['my-button']
を使用しているとして、クラス名を使用する必要がありますが、それは、オブジェクトスタイルを避け、上記のように使用することはできますか?
@shameerikka他のファイルに '.my-button'クラスの重複があると思うなら、この' style ['my-button'] 'を実行してください。他の賢明な 'className =" my-button "'はちょうどいいです(もちろん、ファイルを 'import'する必要があります)。 :) –
@ free-soul yathoo :)これを試しましたが、うまくいきません。私はいくつかの設定がwebpack – mshameer