10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import { MDXRemote } from "next-mdx-remote/rsc"
|
|
|
|
interface MDXContentProps {
|
|
content: string
|
|
}
|
|
|
|
export function MDXContent({ content }: MDXContentProps) {
|
|
return <MDXRemote source={content} />
|
|
}
|