import React from "react"; import { SyntaxHighlighter, docco } from "../highlight-init"; type ContractProps = { content: any; }; const Contract: React.FC = ({ content }) => ( {content ?? ""} ); export default React.memo(Contract);