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
|