JSFiddle - React, Tailwind, and code Playground
HTML
<script type="text/javascript">
function changeImage(a) {
document.getElementById("img").src=a;
}
</script>
<div id="main_img">
<img id="img" src="http://placehold.it/110x110">
</div>
<div id="thumb_img">
<img src='http://placehold.it/120x60' onclick='changeImage("http://placehold.it/120x60") title="logo";'>
<img src='http://placehold.it/130x60' onclick='changeImage("http://placehold.it/130x60");'>
<img src='http://placehold.it/140x60' onclick='changeImage("http://placehold.it/140x60");'>
</div>