add nav item for home and use pubkey on portfolio page

This commit is contained in:
Matthew Russell 2022-02-23 16:13:21 -08:00
parent 3f9f97b1fa
commit d1f44589cc

View File

@ -1,7 +1,12 @@
import { useVegaWallet } from '@vegaprotocol/react-helpers';
const Portfolio = () => {
const { keypair } = useVegaWallet();
return (
<div>
<h1>Portfolio</h1>
<h1>
Portfolio for: {keypair.name} {keypair.pub}
</h1>
</div>
);
};