UNPKG

polen

Version:

A framework for delightful GraphQL developer portals

7 lines 333 B
import { jsx as _jsx } from "react/jsx-runtime"; import { Markdown as MarkdownParser } from '#api/singletons/markdown/index'; export const Markdown = ({ children }) => { const html = MarkdownParser.parseSync(children); return _jsx("div", { dangerouslySetInnerHTML: { __html: html } }); }; //# sourceMappingURL=Markdown.js.map