import React from "react"; import { use4Bytes } from "../use4Bytes"; type MethodNameProps = { data: string; }; const MethodName: React.FC = ({ data }) => { const methodName = use4Bytes(data); return (

{methodName}

); }; export default React.memo(MethodName);