JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text">
<div class="res">
Наименование организации: <span class="name"></span>
</div>

JavaScript

$(document).on('keyup', 'input', function(){
  var text = $(this).val();
        $('.res .name').text(text);
});