JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<h1>Peek-a-boo</h1>
<p>Let's play peek-a-boo. Click here to see the surprise!</p>
<img src="https://www.google.com/images/srpr/logo11w.png">
<img src="https://www.google.com/images/srpr/logo11w.png">
</div>
CSS
img {
display: none;
}
JavaScript
$(function() {
$("p").click(function() {
$("img").show();
});
});