Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created May 21, 2024 04:21
Show Gist options
  • Save SarahElson/3297e72223bedc78b2fcb78d848f2814 to your computer and use it in GitHub Desktop.
Save SarahElson/3297e72223bedc78b2fcb78d848f2814 to your computer and use it in GitHub Desktop.
How to Use CSS Modules With React Applications
//Import the styles in a JavaScript file
import styles from './Card.module.css'
//use it as an object
<div class={styles.card}>
{/* Code related to card */}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment