プロジェクトには、文字列を返す次の参照があります。
const left = slide.imageLeft; // introLeft
さらに、React コンポーネント内でレンダリングします。しかし、それは文字列として返され、styles.imageLeft
webpack はそれを対応するバンドルされたクラスに変換し914u923asdsajdlj1l23
ないため、スタイルは適用されません。
<div className={`styles.${left}`}> </div>
PS私は評価しようとしましたが、2つのエラーが発生しました。
There is an internal error in the React performance measurement code. Did not expect componentDidMount timer to start while render timer is still in progress for another instance.
と
ReferenceError: styles is not defined
css-loader の動的クラス生成を実現する方法を教えてください。