JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text">
Здравствуйте, <span></span>
JavaScript
const input = document.querySelector('input');
const span = document.querySelector('span');
input.addEventListener('input', (e) => {
span.innerHTML = e.target.value;
});