8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
|
import type { MDXComponents } from 'mdx/types'
|
||
|
|
||
|
export function useMDXComponents(components: MDXComponents): MDXComponents {
|
||
|
return {
|
||
|
...components,
|
||
|
}
|
||
|
}
|