Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created August 13, 2022 04:28
Show Gist options
  • Save SarahElson/a3c4e1e62cb9226bfa2638081d80f65c to your computer and use it in GitHub Desktop.
Save SarahElson/a3c4e1e62cb9226bfa2638081d80f65c to your computer and use it in GitHub Desktop.
How To Style And Write CSS In React
import Styles from "./App.module.css";
export default function App() {
return (
<div className={Styles.block}>
<h2>
React is a free and open-source front-end JavaScript library for
building user interfaces based on UI components. It is maintained by
Meta and a community of individual developers and companies
</h2>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment