rizaldy.club/quartz/components/Content.tsx

12 lines
485 B
TypeScript
Raw Normal View History

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