Files
lixiyu-net/components/mdx/index.ts

16 lines
365 B
TypeScript
Raw Normal View History

2024-04-03 22:08:27 +08:00
import Blockquote from "./Blockquote";
import H2 from "./H2";
2023-12-25 17:21:39 +08:00
import ImageWrapper from "./ImageWrapper";
import PreWrapper from "./PreWrapper";
import Span from "./Span";
2023-12-25 17:21:39 +08:00
import TableWrapper from "./TableWrapper";
export const MDXComponentsSet = {
pre: PreWrapper,
table: TableWrapper,
img: ImageWrapper,
h2: H2,
2024-04-03 22:08:27 +08:00
blockquote: Blockquote,
span: Span,
2023-12-25 17:21:39 +08:00
};