Skip to content

Commit

Permalink
small name error in code example (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandoko authored Nov 20, 2022
1 parent b90ad0e commit eb46795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/styling.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ CSS modules allow you to scope styles. Files must be end with `*.module.{css,sas
```ts
import styles from "./Button.module.css";

const Button = () => <button className={style.myButton} />;
const Button = () => <button className={styles.myButton} />;
```

Read more about css modules here:
Expand Down

0 comments on commit eb46795

Please sign in to comment.