JSFiddle - React, Tailwind, and code Playground

HTML

<button img src="C:\Users\VIKRANT\Desktop\DSC_0263.JPG">One</button>
<button data-src="http://placehold.it/355x155">Second</button>
<button data-src="http://placehold.it/360x160">Third</button>

<div id="image"></div>

JavaScript

$(function(){
		
		$('button').on('click',function(e){
			e.preventDefault();
			
			var imgSRC = $(this).data('src');
			
			$('#image').html('<img src="'+imgSRC+'" alt="" />');
		});
		
	});