JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>
	<input type="text" id="nom" >
	<p id="out">Hello</p>
	<script defer>
		

document.getElementById('nom').addEventListener('input', function (e){
  let y=document.getElementById('out');
  y.innerHTML=e.target.value;
})







</script>

</body>
</html>