JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" id="meuInput">

JavaScript

var input = document.querySelector('#meuInput');
input.addEventListener('keyup', function() {
    this.value = this.value + 0;
});