Skip to content

Commit b532158

Browse files
authored
Remove non-existing style from css module example (#765)
1 parent 550bd41 commit b532158

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/solid-start/building-your-application/css-and-styling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ import styles from "./Card.module.css";
8686
const Card = (props) => {
8787
return (
8888
<div class={styles.card}>
89-
<h1 class={styles.title}>{props.title}</h1>
89+
<h1>{props.title}</h1>
9090
<p>{props.text}</p>
9191
</div>
9292
);

0 commit comments

Comments
 (0)