Modularize your classNames in jsx/tsx file
npm install modularize-jsxModularize JSX
// Component.jsx
function Component () {
return
<>
Hello world!
>
}
`
`
// component.module.css
.div-container {
color: #eee;
}
.p-container{
color: #333;
}
`
to this
`
// Component.jsx
import componentStyles from "component.module.css"; // auto-imported
function Component() {
return
<>
Hello world!
>
}
``