DEV Community

Discussion on: 5 reasons to go with CSS in JS for your next application

 
about0 profile image
Bohdan Kostrytskyi

Agree. CSS module system is the best

import styles from './App.module.scss';

which can be use after as

<div className={styles.App}>
...
</div>