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