Appearance
Disconnects the app from the wallet.
import { useDisconnect } from "@midl-xyz/midl-js-react";
function Page() { const { disconnect } = useDisconnect(); return ( <div> <button onClick={disconnect}>Disconnect</button> </div> ); }