import { HTMLAttributes } from "react";
import { Pre } from "@/components/content/pre";
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area";
export const MdxComponents = {
pre: (props: HTMLAttributes) => ,
ol: (props: HTMLAttributes) => (
),
ul: (props: HTMLAttributes) => (
),
table: (props: HTMLAttributes) => (
),
};