discourse/frontend/components/connect-wallet-button.tsx

11 lines
256 B
TypeScript
Raw Permalink Normal View History

2025-03-25 03:52:30 -04:00
"use client"
import { Wallet } from "lucide-react"
import { Button } from "@/components/ui/button"
import { WalletConnectionModal } from "@/components/wallet-connection-modal"
export function ConnectWalletButton() {
return <WalletConnectionModal />
}