dalfuss.net/quartz/components/Content.tsx

12 lines
464 B
TypeScript
Raw Normal View History

2023-06-11 23:46:38 -07:00
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-09 23:06:02 -07:00
import { Fragment, jsx, jsxs } from 'preact/jsx-runtime'
import { toJsxRuntime } from "hast-util-to-jsx-runtime"
2023-06-11 23:46:38 -07:00
function Content({ tree }: QuartzComponentProps) {
2023-06-09 23:06:02 -07:00
// @ts-ignore (preact makes it angry)
const content = toJsxRuntime(tree, { Fragment, jsx, jsxs, elementAttributeNameCase: 'html' })
return content
}
2023-06-11 23:46:38 -07:00
export default (() => Content) satisfies QuartzComponentConstructor