diff --git a/src/components/content/mdx-components.tsx b/src/components/content/mdx-components.tsx index f8295c2..c491b8d 100644 --- a/src/components/content/mdx-components.tsx +++ b/src/components/content/mdx-components.tsx @@ -1,8 +1,19 @@ 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) =>
      , + ol: (props: HTMLAttributes) => ( +
        + ), + ul: (props: HTMLAttributes) => ( +
          + ), + table: (props: HTMLAttributes) => ( + + + + + ), };