/* * This is used to wrap MDX as returned from the mdxLoader * method (see shared/mdx/loader.js) * It is NOT for wrapping plain markdown/mdx */ import { useState, useEffect } from 'react' // See: https://mdxjs.com/guides/mdx-on-demand/ import { run } from '@mdx-js/mdx' import * as runtime from 'react/jsx-runtime' // Components that are available in all MDX import customComponents from 'shared/components/mdx' // Previous-Next navigation import PrevNext from '../mdx/prev-next' const Null = (props) => null const MdxWrapper = ({ mdx, app, t, components = {} }) => { const [mdxModule, setMdxModule] = useState() useEffect(() => { ;(async () => { // Workaround for issue introduced in MDX 2.2 setMdxModule(await run(mdx, { ...runtime, jsxDEV: runtime.jsx })) })() }, [mdx]) /* * We use some default components that are available * everywhere in MDX, but we also accept passing in * extra components via props */ const allComponents = { ...customComponents(app, t), ...components, } // React component for MDX content const MdxContent = mdxModule ? mdxModule.default : Null return app ? (