JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<body>
<input id="input" type="text" />
</body>
JavaScript
$("#input").change(() => {
let text = $(this).val();
$("body").append("<h1>" + text + "</h1>")
});