Withdrawal
{activeTab === 'single' ? (
) : (
)}
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 (