Update components/mdx-client-wrapper.tsx

This commit is contained in:
kleap-admin 2026-01-18 14:06:28 +00:00
parent db45872053
commit c132f82a69
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>
}