2026-05-19 21:09:56 +08:00
|
|
|
import type { MDXComponents } from 'mdx/types';
|
2026-05-21 14:12:50 +08:00
|
|
|
import defaultMdxComponents from 'fumadocs-ui/mdx';
|
2026-05-22 10:08:18 +08:00
|
|
|
import {
|
|
|
|
|
Layout, Section, Article, Layer, Masthead, Rule, Footer,
|
|
|
|
|
Headline, Subhead, Kicker, BodyText, Quote, Byline, Dateline, Caption,
|
|
|
|
|
Image, Figure, Video, PullQuote,
|
|
|
|
|
BreakingNewsBanner, Folio, IndexBox, Factbox, RelatedArticles, AuthorCard,
|
|
|
|
|
} from './lib/nui-client';
|
2026-05-19 21:09:56 +08:00
|
|
|
|
|
|
|
|
export function useMDXComponents(components: MDXComponents): MDXComponents {
|
|
|
|
|
return {
|
2026-05-21 14:12:50 +08:00
|
|
|
...defaultMdxComponents,
|
2026-05-19 21:09:56 +08:00
|
|
|
...components,
|
2026-05-22 10:08:18 +08:00
|
|
|
Layout, Section, Article, Layer, Masthead, Rule, Footer,
|
|
|
|
|
Headline, Subhead, Kicker, BodyText, Quote, Byline, Dateline, Caption,
|
|
|
|
|
Image, Figure, Video, PullQuote,
|
|
|
|
|
BreakingNewsBanner, Folio, IndexBox, Factbox, RelatedArticles, AuthorCard,
|
2026-05-19 21:09:56 +08:00
|
|
|
};
|
|
|
|
|
}
|