JSFiddle - React, Tailwind, and code Playground

JavaScript

function input (typ,val){
elt= document.createElement('input');
elt.type=typ;
elt.value=val
return elt;
}

foo=input('text','test')
document.body.appendChild (foo)