app-vibrant-gecko-yawn/mdx-components.tsx

12 lines
271 B
TypeScript

'use client'
import { type MDXComponents } from "mdx/types";
import Image, { type ImageProps } from "next/image";
export function useMDXComponents(components: MDXComponents) {
return {
...components,
Image: (props: ImageProps) => <Image {...props} />,
};
}