JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wv-spot">
<img id="apple-pay" />
</div>
<br>
<br>
<a href="javascript:add_img();">teste</a>
JavaScript
function add_img() {
var img = document.createElement('img');
img.src = 'https://media.geeksforgeeks.org/wp-content/uploads/20190529122828/bs21.png';
document.getElementById('body').appendChild(img);
alert('AAAA');
}