JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" />

JavaScript

$('input').keydown(function(){
   var self = $(this);
    
   var removedText = self.val().replace(/[^0-9]/, '');
    
   self.val(removedText);
});