import React from "react"; import StandardSubtitle from "../StandardSubtitle"; import ContentFrame from "../ContentFrame"; type AddressOrENSNameNotFoundProps = { addressOrENSName: string; supportsENS: boolean; }; const AddressOrENSNameNotFound: React.FC = ({ addressOrENSName, supportsENS, }) => ( <> Transaction Details
"{addressOrENSName}" is not an ETH address {supportsENS && " or ENS name"}.
); export default React.memo(AddressOrENSNameNotFound);