UNPKG

@servicetitan/assist-ui

Version:

ServiceTitan Atlas UI Components

17 lines (16 loc) 528 B
import { jsx as _jsx } from "react/jsx-runtime"; import ReactMarkdown from 'react-markdown'; import remarkGfm from 'remark-gfm'; import * as styles from './markdown-text.module.less'; export const MarkdownText = ({ text = '' })=>{ return /*#__PURE__*/ _jsx("div", { className: styles.markdownContent, children: /*#__PURE__*/ _jsx(ReactMarkdown, { remarkPlugins: [ remarkGfm ], children: text }) }); }; //# sourceMappingURL=markdown-text.js.map