import defaultMdxComponents from 'fumadocs-ui/mdx'; import type { MDXComponents } from 'mdx/types'; import { ImageZoom } from 'fumadocs-ui/components/image-zoom'; import { Callout } from 'fumadocs-ui/components/callout'; import { APIPage } from '@/lib/source'; export function getMDXComponents(components?: MDXComponents): MDXComponents { return { ...defaultMdxComponents, ImageZoom, Callout, APIPage, ...components, p: ({ children }) => (

{children}

), li: ({ children, id }) => (
  • {children}
  • ), }; }