JSFiddle - React, Tailwind, and code Playground
by Snaptik
HTML
<input type="text" id="numberInput" />
<script>
document.getElementById('numberInput').addEventListener('input', function (e) {
this.value = this.value.replace(/[^0-9]/g, '');
});
</script>