import { FunctionComponent } from "react"; export const Body: FunctionComponent<{ className?: string }> = ({ className, children, }) => { return

{children}

; };