use body styles for rich text block and separate component
This commit is contained in:
10
web/src/components/blocks/RichTextBlock.tsx
Normal file
10
web/src/components/blocks/RichTextBlock.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import styles from "./richTextBlock.module.scss";
|
||||
|
||||
export const RichTextBlock = ({ block }: any) => {
|
||||
return (
|
||||
<div
|
||||
className={styles.richTextBlock}
|
||||
dangerouslySetInnerHTML={{ __html: block.value }}
|
||||
></div>
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user