From e0a374aeff21996e898c50c77af3f5c41884b73f Mon Sep 17 00:00:00 2001 From: enneaa Date: Thu, 27 Mar 2025 11:13:46 +0800 Subject: [PATCH] Update Body.tsx --- quartz/components/Body.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/quartz/components/Body.tsx b/quartz/components/Body.tsx index 96b627883..e4db8b03a 100644 --- a/quartz/components/Body.tsx +++ b/quartz/components/Body.tsx @@ -4,7 +4,18 @@ import clipboardStyle from "./styles/clipboard.scss" import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" const Body: QuartzComponent = ({ children }: QuartzComponentProps) => { - return
{children}
+ return +
{children} +
+ + +
} Body.afterDOMLoaded = clipboardScript