11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import { type MDXComponents as MDXComponentsType } from 'mdx/types'
|
|
|
|
import { MDXComponents } from '@/components/MDXComponents'
|
|
|
|
export function useMDXComponents(components: MDXComponentsType) {
|
|
return {
|
|
...components,
|
|
...MDXComponents,
|
|
}
|
|
}
|