From 0935a06b2d06439cf198d094c58d134e0b902415 Mon Sep 17 00:00:00 2001 From: enneaa Date: Thu, 27 Mar 2025 13:04:06 +0800 Subject: [PATCH] Update Body.tsx --- quartz/components/Body.tsx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/quartz/components/Body.tsx b/quartz/components/Body.tsx index 6e7ee7aee..96b627883 100644 --- a/quartz/components/Body.tsx +++ b/quartz/components/Body.tsx @@ -4,16 +4,7 @@ import clipboardStyle from "./styles/clipboard.scss" import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" const Body: QuartzComponent = ({ children }: QuartzComponentProps) => { - return ( -
- {children} -
- - -
- ) + return
{children}
} Body.afterDOMLoaded = clipboardScript