Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created May 20, 2024 16:25
Show Gist options
  • Save SarahElson/411e3a25d5834ab2a773b3d5615709bd to your computer and use it in GitHub Desktop.
Save SarahElson/411e3a25d5834ab2a773b3d5615709bd to your computer and use it in GitHub Desktop.
How to Use CSS Modules With React Applications
import styles from './App.module.css'
import HeroSection from './components/HeroSection/HeroSection';
import Navbar from './components/Navbar/Navbar';
function App() {
return (
<div className={styles.app}>
<Navbar />
<HeroSection />
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment