JSFiddle - React, Tailwind, and code Playground

HTML

<input type="number" id="integer" />

JavaScript

document.getElementById("integer").addEventListener('input', restrictToInteger);

function restrictToInteger()
{
  this.value = this.value.replace(/[^\d]/g, '');
}