import {
Link as Anchor,
Heading,
Text,
chakra,
Code,
HStack,
Divider,
Box,
} from "@chakra-ui/react";
import { Options } from "react-markdown";
export const MarkdownComponentDefs: Options["components"] = {
a: (props: any) => ,
h1: (props: any) => ,
h2: (props: any) => ,
h3: (props: any) => ,
h4: (props: any) => ,
h5: (props: any) => ,
h6: (props: any) => ,
p: (props: any) => ,
li: (props: any) => ,
code: (props) => (
),
blockquote: (props) => {
return (
{props.children}
);
},
};