2023-06-17 09:41:59 +07:00
|
|
|
// @ts-ignore
|
2023-07-23 07:27:41 +07:00
|
|
|
import clipboardScript from "./scripts/clipboard.inline"
|
|
|
|
import clipboardStyle from "./styles/clipboard.scss"
|
2024-02-14 11:53:44 +07:00
|
|
|
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
2023-06-07 11:19:00 +07:00
|
|
|
|
2024-02-14 11:53:44 +07:00
|
|
|
const Body: QuartzComponent = ({ children }: QuartzComponentProps) => {
|
2023-07-23 07:27:41 +07:00
|
|
|
return <div id="quartz-body">{children}</div>
|
2023-06-07 11:19:00 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
Body.afterDOMLoaded = clipboardScript
|
|
|
|
Body.css = clipboardStyle
|
2023-06-12 13:46:38 +07:00
|
|
|
|
|
|
|
export default (() => Body) satisfies QuartzComponentConstructor
|