import { useParams } from 'react-router-dom' import Intro from 'components/Intro' import useStore from 'store' export default function PortfolioIntro() { const { address: urlAddress } = useParams() const address = useStore((s) => s.address) const isCurrentWalllet = !urlAddress || urlAddress === address return ( This is the Portfolio of the address{' '} {urlAddress}. You can see all Credit Accounts of this address, but you can't interact with them. ) : ( <> This is your Portfolio. Use it to get an overview about all your Credit Accounts and their balances. ) } bg='portfolio' > ) }