feat: json rich text editor, blocks, asides, general structure

This commit is contained in:
Simon Emanuelsson
2024-02-07 11:57:36 +01:00
committed by Christel Westerberg
parent c5a0f5f848
commit ba6af14748
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import styles from "./strike.module.css"
export default function Strikethrough({ children }: React.PropsWithChildren) {
return (
<span className={styles.strikethrough}>
{children}
</span>
)
}

View File

@@ -0,0 +1,3 @@
.strikethrough {
text-decoration: line-through;
}