JSFiddle - React, Tailwind, and code Playground
HTML
<img src="http://lorempixel.com/400/200" id='imag'/>
JavaScript
setInterval(function(){
document.getElementById("imag").src = document.getElementById("imag").src;
}, 5000);
<img src="http://lorempixel.com/400/200" id='imag'/>
setInterval(function(){
document.getElementById("imag").src = document.getElementById("imag").src;
}, 5000);