keroosha.cybergulag.today/quartz/components/pages/Content.tsx

10 lines
365 B
TypeScript
Raw Normal View History

import { htmlToJsx } from "../../util/jsx"
2023-07-01 10:03:01 +03:00
import { QuartzComponentConstructor, QuartzComponentProps } from "../types"
function Content({ fileData, tree }: QuartzComponentProps) {
const content = htmlToJsx(fileData.filePath!, tree)
2023-07-02 23:08:29 +03:00
return <article class="popover-hint">{content}</article>
2023-07-01 10:03:01 +03:00
}
2023-07-02 23:08:29 +03:00
export default (() => Content) satisfies QuartzComponentConstructor