How to apply global styles with CSS modules in a react app?

后端 未结 5 803
孤独总比滥情好
孤独总比滥情好 2020-12-23 15:57

I\'m currently using CSS Modules with React for my styling. So each of my components is importing in it\'s component specific css file, like so:

import React         


        
5条回答
  •  误落风尘
    2020-12-23 16:23

    This can be done by simply adding:

    require('./App.css');
    

    (thanks @elmeister who correctly answered this question.)

提交回复
热议问题