Files
2026-07-11 17:08:37 +00:00

8 lines
281 B
TypeScript

import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
const Body: QuartzComponent = ({ children }: QuartzComponentProps) => {
return <div id="quartz-body">{children}</div>
}
export default (() => Body) satisfies QuartzComponentConstructor