Files
lixiyu-net/components/mdx/index.ts
2024-04-03 22:08:27 +08:00

14 lines
324 B
TypeScript

import Blockquote from "./Blockquote";
import H2 from "./H2";
import ImageWrapper from "./ImageWrapper";
import PreWrapper from "./PreWrapper";
import TableWrapper from "./TableWrapper";
export const MDXComponentsSet = {
pre: PreWrapper,
table: TableWrapper,
img: ImageWrapper,
h2: H2,
blockquote: Blockquote,
};