13 lines
316 B
JavaScript
13 lines
316 B
JavaScript
"use client";
|
|
|
|
import { MarkdownRenderer } from "@/utils/markdown";
|
|
|
|
export default function DocsContent({ content }) {
|
|
return (
|
|
<main className="flex-1 overflow-y-auto">
|
|
<article className="max-w-4xl mx-auto px-6 py-8">
|
|
<MarkdownRenderer content={content} />
|
|
</article>
|
|
</main>
|
|
);
|
|
}
|