mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import type { MDXComponents } from "mdx/types"
|
|
import defaultMdxComponents from "fumadocs-ui/mdx"
|
|
|
|
export function useMDXComponents(components: MDXComponents): MDXComponents {
|
|
return {
|
|
...defaultMdxComponents,
|
|
...components,
|
|
}
|
|
}
|