How to make React CSS import component-scoped?

后端 未结 4 431
粉色の甜心
粉色の甜心 2020-11-30 03:37

I have several components which have the following CSS/component structure

About/style.css

.AboutContainer {
    # Some style
}

p >          


        
4条回答
  •  心在旅途
    2020-11-30 04:06

    Because you mentioned you used create-react-app, the solution here is quite easy change just style.css to style.module.css, it will look like this:

    import styles from "./style.css"
    
    

    More info on this article: https://blog.bitsrc.io/how-to-use-sass-and-css-modules-with-create-react-app-83fa8b805e5e

提交回复
热议问题