import React from "react"; import { SyntaxHighlighter, docco } from "../highlight-init"; type RawABIProps = { abi: any[]; }; const RawABI: React.FC = ({ abi }) => ( {JSON.stringify(abi, null, " ") ?? ""} ); export default React.memo(RawABI);