...

/

Modular CSS with CSS Modules

Modular CSS with CSS Modules

Learn how to style React components using modular code while avoiding conflicts.

Importing and using CSS modules

CSS Modules are some sort of predecessor to CSS-in-JS and combine several properties from CSS and JavaScript modules. As the name already suggests, the CSS is found in their own importable modules, which, however, contain pure CSS and are tied to one particular component. If we were to develop ...