This repository has been archived on 2025-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
www_engageos/mdx-components.tsx
2025-06-17 12:18:51 +02:00

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,
}
}