Update components/mdx-client-wrapper.tsx

This commit is contained in:
kleap-admin 2026-01-15 13:40:17 +00:00
parent 95a4efd4a8
commit 2bf0913a37
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
'use client'
import { MDXProvider } from '@mdx-js/react'
import React from 'react'
export default function MDXClientWrapper({ children }: { children: React.ReactNode }) {
return <MDXProvider>{children}</MDXProvider>
}