I have one input which divides 2 number and gives value, so I want to display that value in h1 tag
<input className='input' type="number" id="" placeholder='$' onChange={(evt) => {console.log(evt.target.value / coinId.price)}}/>
coinId.price is todays BTC price from API but it is not important at this point
here is code which gave me result in console log so any suggestions? Thanks.