import React from "react"; import { useWallet, useWalletModal } from "@vechain/dapp-kit-react"; import { FaWallet } from "react-icons/fa"; import { Button } from "@chakra-ui/react"; import { shortenAddress } from "../utils"; export function LoginButton() { const { open } = useWalletModal(); // this hook triggers the connection modal const { account } = useWallet(); // this hook is the state of the account, as soon as this account state updates, the component gets re-rendered // and the address get's rendered to the UI return ( ); }