free.technology/mdx-components.tsx

8 lines
161 B
TypeScript
Raw Normal View History

2023-10-17 15:12:25 +00:00
import type { MDXComponents } from 'mdx/types'
export function useMDXComponents(components: MDXComponents): MDXComponents {
return {
...components,
}
}