import { useState } from 'react'; import { useWalletStore } from '../store/wallet'; export default function ReceivePage() { const { address } = useWalletStore(); const [copied, setCopied] = useState(false); const handleCopy = async () => { if (address) { await navigator.clipboard.writeText(address); setCopied(true); setTimeout(() => setCopied(false), 2000); } }; return (
Share this address to receive SYNOR. Only send SYNOR to this address - other cryptocurrencies will be lost.