mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +00:00
7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
|
import { HTMLAttributes } from "react";
|
||
|
import { Pre } from "@/components/content/pre";
|
||
|
|
||
|
export const MdxComponents = {
|
||
|
pre: (props: HTMLAttributes<HTMLPreElement>) => <Pre {...props} />,
|
||
|
};
|