# 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 (
Connected: {address}
> ) : ( )}