# Examples Here are examples on how to use the `@bigmi/react` library in your project. ## Wallet Connection ### Basic Connection ```typescript import { useAccount } from '@bigmi/react' function WalletConnect() { const { address, isConnected, connect, disconnect } = useAccount() return (
{isConnected ? ( <>

Connected: {address}

) : ( )}
) } ``` ### Multiple Wallets ```typescript import { useConnectors } from '@bigmi/react' function WalletSelector() { const { connectors } = useConnectors() return (
{connectors.map((connector) => ( ))}
) } ```