mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
|
|
import defaultMdxComponents from 'fumadocs-ui/mdx';
|
||
|
|
import type { MDXComponents } from 'mdx/types';
|
||
|
|
|
||
|
|
export function getMDXComponents(components?: MDXComponents): MDXComponents {
|
||
|
|
return {
|
||
|
|
...defaultMdxComponents,
|
||
|
|
...components,
|
||
|
|
};
|
||
|
|
}
|