Skip to content

Commit

Permalink
Remove non-existing style from css module example (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoavbls authored Jun 3, 2024
1 parent 550bd41 commit b532158
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ import styles from "./Card.module.css";
const Card = (props) => {
return (
<div class={styles.card}>
<h1 class={styles.title}>{props.title}</h1>
<h1>{props.title}</h1>
<p>{props.text}</p>
</div>
);
Expand Down

0 comments on commit b532158

Please sign in to comment.