JSFiddle - React, Tailwind, and code Playground

HTML

<input id="filter" type="text" placeholder="Enter your filter text here.." onkeyup = "test()" />

<div id="lc">  
</div><script>

function test()
{

var element = document.createElement("div");
element.appendChild(document.createTextNode('The man who mistook his wife for a hat'));
document.getElementById('lc').appendChild(element);
 //document.body.appendChild(element);
 }
</script>