2020-06-12a few seconds read (About 23 words)How to handle evens in put with ReactIssue #661 Use Bulma css 123456789101112<input class="input is-rounded" type="text" placeholder="Say something" value={value} onChange={(e) => { onValueChange(e.target.value) }} onKeyDown={(e) => { if (e.key === 'Enter') { onSend(e) } }}/>#javascriptreact