2026-05-19 21:09:56 +08:00
|
|
|
import type { MDXComponents } from 'mdx/types';
|
2026-05-21 14:12:50 +08:00
|
|
|
import defaultMdxComponents from 'fumadocs-ui/mdx';
|
2026-05-19 21:09:56 +08:00
|
|
|
|
|
|
|
|
export function useMDXComponents(components: MDXComponents): MDXComponents {
|
|
|
|
|
return {
|
2026-05-21 14:12:50 +08:00
|
|
|
...defaultMdxComponents,
|
2026-05-19 21:09:56 +08:00
|
|
|
...components,
|
|
|
|
|
};
|
|
|
|
|
}
|