Core Hooks
useDynamicModals
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 Stablecoin Accounts are live! Learn more
| Method | Type | Description |
|---|---|---|
| setShowLinkNewWalletModal | Dispatch<SetStateAction> | Use it to link a new wallet when the user is logged in |
const LinkNewWalletButton = () => {
const { setShowLinkNewWalletModal } = useDynamicModals();
return (
<button
onClick={() => setShowLinkNewWalletModal(true)}
>
Link a new wallet
</button>
);
};
Was this page helpful?