Files
wehub-resource-sync 05fcd08057
Deploy GitBook to 9router.github.io / build-deploy (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:21:01 +08:00

14 lines
350 B
JavaScript

"use client";
import { MarkdownRenderer } from "@/utils/markdown";
export default function DocsContent({ content }) {
return (
<main className="flex-1 min-w-0 overflow-x-hidden overflow-y-auto">
<article className="max-w-4xl mx-auto px-4 sm:px-6 py-8">
<MarkdownRenderer content={content} />
</article>
</main>
);
}