import { chakra } from "@chakra-ui/react"; import { FC, ReactNode } from "react"; type Props = { children: ReactNode; }; export const CodeBlock: FC = ({ children }) => { return ( {children} ); };