JSFiddle - React, Tailwind, and code Playground

HTML

<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.js">
<div id="container">
    <img src="https://www.google.com/images/errors/logo_sm.gif">
</div>

JavaScript

$('#container img').on('dblclick', function(){
    $(this).wrap('<div id="resizeSelector" style="dislplay:inline-block;">');
  $('#resizeSelector').draggable();
  $(this).resizable();
});