JSFiddle - React, Tailwind, and code Playground

HTML

<button class="thumbnail" >przycisk</button>
<div class="header"></div>

JavaScript

$(document).ready(function(){
    $('.thumbnail').click(function()
        {
        $('<img class="stretch" src="http://read.pudn.com/downloads183/sourcecode/graph/texture_mapping/857705/edge&corner/lenna__.jpg">').insertAfter('.header');
        });
    $(document).on('click','.stretch',function()
        {
        $(this).remove();
        });
});