import { useCurrentAccount } from "@onelabs/dapp-kit"; import { Container, Flex, Heading, Text } from "@radix-ui/themes"; import { OwnedObjects } from "./OwnedObjects"; export function WalletStatus() { const account = useCurrentAccount(); return ( Wallet Status {account ? ( Wallet connected Address: {account.address} ) : ( Wallet not connected )} ); }