import React, { useState } from 'react'; import { Link } from 'react-router-dom'; import SiteFooter from './components/SiteFooter'; function Withdrawal() { const [activeTab, setActiveTab] = useState('single'); // 'single' | 'batch' const handleSubmitSingle = (e) => { e.preventDefault(); alert('Single withdrawal submitted (placeholder).'); }; const handleSubmitBatch = (e) => { e.preventDefault(); alert('Batch withdrawal submitted (placeholder).'); }; return (

HicoinPay

Back to Dashboard

Withdrawal

{/* Tab Bar */}
{activeTab === 'single' ? (
) : (

CSV columns: address, amount, coin(USDT/USDC), wallet(BNB/ETH/TRX), memo(optional)

)}
); } export default Withdrawal;