mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-20 10:04:57 -05:00
render p as div (#496)
This commit is contained in:
@@ -48,7 +48,7 @@ const Markdown: React.FC<MarkdownProps> = ({
|
||||
return {
|
||||
paragraph: (props: any) => {
|
||||
const { children } = props;
|
||||
return <Text mb={2}>{children}</Text>;
|
||||
return <Text as="div" mb={2}>{children}</Text>;
|
||||
},
|
||||
emphasis: (props: any) => {
|
||||
const { children } = props;
|
||||
|
||||
Reference in New Issue
Block a user