import React from "react"; import { NavLink } from "react-router-dom"; type AddressLinkProps = { address: string; text?: string; }; const AddressLink: React.FC = ({ address, text }) => (

{text ?? address}

); export default React.memo(AddressLink);