mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-11-09 13:39:49 +00:00
11 lines
357 B
TypeScript
11 lines
357 B
TypeScript
import { ImageZoom } from "fumadocs-ui/components/image-zoom";
|
|
import defaultComponents from "fumadocs-ui/mdx";
|
|
import type { MDXComponents } from "mdx/types";
|
|
|
|
export function getMDXComponents(components?: MDXComponents): MDXComponents {
|
|
return {
|
|
...defaultComponents,
|
|
img: (props) => <ImageZoom {...(props as any)} />,
|
|
...components,
|
|
};
|
|
}
|