Function
getMDXComponents
(components?: MDXComponents)
Source from the content-addressed store, hash-verified
| 9 | import type { MDXComponents } from 'mdx/types'; |
| 10 | |
| 11 | export function getMDXComponents(components?: MDXComponents) { |
| 12 | return { |
| 13 | ...(icons as unknown as MDXComponents), |
| 14 | ...defaultMdxComponents, |
| 15 | ...TabsComponents, |
| 16 | ...FilesComponents, |
| 17 | Accordion, |
| 18 | Accordions, |
| 19 | ...components, |
| 20 | Faqs, |
| 21 | FaqItem, |
| 22 | WindowImage, |
| 23 | Figure, |
| 24 | } satisfies MDXComponents; |
| 25 | } |
| 26 | |
| 27 | |
| 28 | declare global { |
Tested by
no test coverage detected