Files
paxad/quartz/components/Body.tsx
2026-07-07 20:48:21 -04: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