JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" onkeyup="checkString(this)"/>

JavaScript

function checkString(elm) {
    console.log(elm);
    elm.value = elm.value.replace(/[^0-9]/g,'');
}