judge4c/src/components/content/mdx-components.tsx

7 lines
193 B
TypeScript
Raw Normal View History

import { HTMLAttributes } from "react";
import { Pre } from "@/components/content/pre";
export const MdxComponents = {
pre: (props: HTMLAttributes<HTMLPreElement>) => <Pre {...props} />,
};