import { useParams } from 'react-router-dom' import Intro from 'components/Intro' import useStore from 'store' export default function PortfolioIntro() { const { address } = useParams() const walletAddress = useStore((s) => s.address) return ( This is the Portfolio of the address{' '} {address}. 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' > ) }