JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="foo" />
JavaScript
setTimeout(function(){
document.getElementById("foo").blur();
setTimeout(function(){
document.getElementById("foo").focus();
}, 1000);
}, 1000);