JSFiddle - React, Tailwind, and code Playground
HTML
<div id="my-input">
<input type="text">
</div>
JavaScript
const component = document.getElementById('my-input');
component.addEventListener('input', even => console.log({ event }));
<div id="my-input">
<input type="text">
</div>
const component = document.getElementById('my-input');
component.addEventListener('input', even => console.log({ event }));