12 lines
507 B
TypeScript
Raw Normal View History

2023-07-01 00:03:01 -07:00
import { QuartzComponentConstructor, QuartzComponentProps } from "../types"
2023-07-22 17:27:41 -07:00
import { Fragment, jsx, jsxs } from "preact/jsx-runtime"
2023-07-01 00:03:01 -07:00
import { toJsxRuntime } from "hast-util-to-jsx-runtime"
function Content({ tree }: QuartzComponentProps) {
// @ts-ignore (preact makes it angry)
2023-07-22 17:27:41 -07:00
const content = toJsxRuntime(tree, { Fragment, jsx, jsxs, elementAttributeNameCase: "html" })
2023-07-02 13:08:29 -07:00
return <article class="popover-hint">{content}</article>
2023-07-01 00:03:01 -07:00
}
2023-07-02 13:08:29 -07:00
export default (() => Content) satisfies QuartzComponentConstructor