JSFiddle - React, Tailwind, and code Playground

by learner001

HTML

<input type="text" value="">
<p></p>

JavaScript

$( "input" )
  .keyup(function() {
    var value = $( this ).val();
    $( "p" ).text( value );
  })
  .keyup();