mirror of
https://github.com/pxdg-afk/paxad.git
synced 2026-08-23 01:01:06 -04:00
8 lines
281 B
TypeScript
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
|