Adds or updates the Nequi account for the authenticated user.
: To receive money from other Colombian banks (like Bancolombia or Davivienda), the sender selects Nequi as the bank and enters your mobile number as the account number.
return ( <div className="nequi-settings-container"> <h3>Nequi Account</h3> <input type="tel" maxLength={10} value={nequiNumber} onChange={(e) => setNequiNumber(e.target.value)} placeholder="3123456789" /> {error && <span className="error">{error}</span>} <button onClick={handleSubmit}>Save Account</button> </div> ); };
const NequiSettings = () => { const [nequiNumber, setNequiNumber] = useState(''); const [error, setError] = useState('');
Adds or updates the Nequi account for the authenticated user.
: To receive money from other Colombian banks (like Bancolombia or Davivienda), the sender selects Nequi as the bank and enters your mobile number as the account number.
return ( <div className="nequi-settings-container"> <h3>Nequi Account</h3> <input type="tel" maxLength={10} value={nequiNumber} onChange={(e) => setNequiNumber(e.target.value)} placeholder="3123456789" /> {error && <span className="error">{error}</span>} <button onClick={handleSubmit}>Save Account</button> </div> ); };
const NequiSettings = () => { const [nequiNumber, setNequiNumber] = useState(''); const [error, setError] = useState('');