| import defaultMdxComponents from 'fumadocs-ui/mdx'; | |
| import { Callout } from 'fumadocs-ui/components/callout'; | |
| import { File, Files, Folder } from 'fumadocs-ui/components/files'; | |
| import { Tab, Tabs } from 'fumadocs-ui/components/tabs'; | |
| import type { MDXComponents } from 'mdx/types'; | |
| export function getMDXComponents(components?: MDXComponents): MDXComponents { | |
| return { | |
| ...defaultMdxComponents, | |
| Callout, | |
| File, | |
| Files, | |
| Folder, | |
| Tab, | |
| Tabs, | |
| ...components, | |
| }; | |
| } | |