JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<input type="text" id="eingabe" />
<p id="ausgabe"></p>

JavaScript

$("#eingabe").bind("keyup change", function(event) {
	$("#ausgabe").text($(this).val());
});