Files
lixiyu-net/components/mdx/index.ts
2023-12-25 17:21:39 +08:00

12 lines
263 B
TypeScript

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,
};