Update components/mdx-client-wrapper.tsx

This commit is contained in:
kleap-admin 2026-01-16 15:56:13 +00:00
parent 228111b218
commit f4c855e158
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>
}