You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<textareaclassName="form-control"placeholder='Enter your text here'id="textArea"onChange={handleOnChange}value={text}rows="8"style={{backgroundColor: props.mode==='dark'?'#13466e':'white',color:props.mode==='dark'?'white':'#042743'}}></textarea>
46
+
</div>
47
+
<buttondisabled={text.length===0}className="btn btn-primary mx-1 my-1"onClick={UpperCaseText}>Convert to Uppercase</button>
48
+
49
+
<buttondisabled={text.length===0}className='btn btn-primary mx-1 my-1'onClick={LowerCaseText}>Convert to Lowercase</button>
50
+
51
+
<buttondisabled={text.length===0}className='btn btn-primary mx-1 my-1'onClick={RemoveExtraSpaces}>Remove Extra Spaces</button>
0 commit comments