import React from 'react' import { useEthers } from '@usedapp/core' import { AccountIcon } from './AccountIcon' export const MetamaskConnect = () => { const { account, activateBrowserWallet } = useEthers() const ConnectButton = () => (

Connect to wallet to interact with the example.

) return (
{account && (
 
{account}

)} {!account && }
) }