Update components/mdx-client-wrapper.tsx
This commit is contained in:
parent
95a4efd4a8
commit
2bf0913a37
|
|
@ -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>
|
||||
}
|
||||
Loading…
Reference in New Issue