JSFiddle - React, Tailwind, and code Playground
JavaScript
$('body').append(
$('<input>', {
class: 'myClass',
id: 'myId',
name: 'myName',
value: '100',
style: 'outline: dashed 2px red',
mouseover: (e)=>e.target.value++
})
)