I dont know what is the problem here, setInterval doesnt wait interval time i set it to wait. First it waits it but after that it keeps doing that x times ms And this code is in react.js render
setInterval(() => {
console.log("moi")
}, 4000)
return(
<div>
<h1>{}</h1>
<h1></h1>
<button><h1>Paina</h1></button>
</div>
)
}