"use client" import ReactMarkdown from "react-markdown" import remarkGfm from "remark-gfm" import { cn } from "@/lib/utils" /** * 统一的 AI Markdown 渲染组件,适配深色科技风主题。 * 用于面试回答版与 AI 追问的回复内容。 */ export function Markdown({ content, className }: { content: string; className?: string }) { return (
{content}
) }