Several CSS files for react CSS modules Several CSS files for react CSS modules reactjs reactjs

Several CSS files for react CSS modules


All you have to do is import both your component css file and your shared css file, then merge them together before passing to CSSModules. You can then import sharedStyles in another module as well if you need and use it the same way.

Example:

import styles from './styles.css'import sharedStyles from './sharedStyles.css'const tableStyles = {...styles, ...sharedStyles }

then pass the new object in

CSSModules(Table, tableStyles)