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

12 lines
263 B
TypeScript
Raw Normal View History

2023-12-25 17:21:39 +08:00
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,
};