How to handle button inside input on focus?
the problem is that when ever in focusing the password input the button show up but when i try to click the button its lose the focus on the input and then the button disappear. <div className=’input-wrapper’> <input onFocus={() => setShowButton(true)} onBlur={() => setShowButton(false)} title=’password’ type={ type === ‘password’ && toggle ? "text" : "password"… Read More How to handle button inside input on focus?