JSFiddle - React, Tailwind, and code Playground
HTML
<img id="test" alt="hello world" />
CSS
img {
background-color: blue;
display: block;
object-fit: cover;
height: 450px;
width: 800px;
}
JavaScript
setTimeout(() => {
document.getElementById('test').src = 'https://placehold.it/800x450'
}, 500);