mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-04 11:39:19 +00:00
8 lines
No EOL
235 B
TypeScript
8 lines
No EOL
235 B
TypeScript
import React from 'react';
|
|
import MarkdownPreview from '@uiw/react-markdown-preview';
|
|
|
|
export default function MarkDownTest({source} : {source: string}) {
|
|
return (
|
|
<MarkdownPreview source={source} style={{ padding: 16 }} />
|
|
)
|
|
} |