diff --git a/quartz/components/Body.tsx b/quartz/components/Body.tsx index 880a8ea5a..bb6ca05c9 100644 --- a/quartz/components/Body.tsx +++ b/quartz/components/Body.tsx @@ -4,17 +4,20 @@ import clipboardStyle from "./styles/clipboard.scss" import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" const Body: QuartzComponent = ({ children }: QuartzComponentProps) => { - return -
{children} -
+ return ( +
+ {children} +
+ ) } Body.afterDOMLoaded = clipboardScript