setIsHover(true)}
- onMouseOut={() => setIsHover(false)}
- >
- {isHover && (
-
- )}
-
- {children}
-
-
- );
-}
diff --git a/src/app/post/[id]/Markdown/index.tsx b/src/app/post/[id]/Markdown/index.tsx
index 04d5595..a16f9d1 100644
--- a/src/app/post/[id]/Markdown/index.tsx
+++ b/src/app/post/[id]/Markdown/index.tsx
@@ -8,7 +8,7 @@ import remarkGfm from "remark-gfm";
import { MarkdownImage } from "@/app/_components/MarkdownImage";
import styles from "./index.module.scss";
import { Suspense, lazy } from "react";
-import Heading3 from "@/app/post/[id]/Markdown/_components/Heading3";
+import Heading from "@/app/post/[id]/Markdown/_components/Heading";
import CommentScript from "@/app/post/[id]/Markdown/_components/CommnetScript";
const Code = lazy(() => import("@/app/post/[id]/Markdown/_components/Code"));
@@ -27,7 +27,10 @@ export default function Markdown({ markdown }: PostProps) {
{children}