先简单了解下什么是 CSS Modules
A CSS Module is a CSS file in which all class names and animation names are scoped locally by default
简单点说 CSS Module 是具有局部作用域的 css 文件。既然提到了局部作用域,那么肯定有全局作用域,在 create-react-app 中,我们引入 css 文件通常为以下形式:
1 | /* index.css */ |
1 | /* index.tsx */ |