Update components/mdx-client-wrapper.tsx

This commit is contained in:
kleap-admin 2026-01-15 13:02:17 +00:00
parent 29b70492f3
commit fd07a08160
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>
}