free.technology/mdx-components.tsx

8 lines
161 B
TypeScript
Raw Normal View History

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