Added TS Usage

This commit is contained in:
Dillon DuPont
2025-07-29 10:45:38 -04:00
parent eac84af801
commit 87402c4c8e
4 changed files with 420 additions and 170 deletions

View File

@@ -1,4 +1,5 @@
import defaultMdxComponents from 'fumadocs-ui/mdx';
import * as TabsComponents from 'fumadocs-ui/components/tabs';
import type { MDXComponents } from 'mdx/types';
import { Mermaid } from './components/mermaid';
import IOU from './components/iou';
@@ -9,6 +10,7 @@ export function getMDXComponents(components?: MDXComponents): MDXComponents {
...defaultMdxComponents,
Mermaid,
IOU,
...TabsComponents,
...components,
};
}