mirror of
https://github.com/Drop-OSS/drop-api-docs.git
synced 2026-01-30 20:55:22 +01:00
11 lines
219 B
TypeScript
11 lines
219 B
TypeScript
import { type MDXComponents } from 'mdx/types'
|
|
|
|
import * as mdxComponents from '@/components/mdx'
|
|
|
|
export function useMDXComponents(components: MDXComponents) {
|
|
return {
|
|
...components,
|
|
...mdxComponents,
|
|
}
|
|
}
|