mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
7 lines
161 B
TypeScript
7 lines
161 B
TypeScript
import type { MDXComponents } from 'mdx/types'
|
|
|
|
export function useMDXComponents(components: MDXComponents): MDXComponents {
|
|
return {
|
|
...components,
|
|
}
|
|
}
|