Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created May 21, 2024 03:56
Show Gist options
  • Select an option

  • Save SarahElson/695b8f851b5e476f6a5f3b0be16a8702 to your computer and use it in GitHub Desktop.

Select an option

Save SarahElson/695b8f851b5e476f6a5f3b0be16a8702 to your computer and use it in GitHub Desktop.
How to Use CSS Modules With React Applications
import React from 'react'
import styles from './Button.module.css'
export default function Button({text,type}) {
return (
<button className={styles.button + " " + styles[type]}>{text}</button>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment