JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div id="dialog" title="Basic dialog">
  <button>Drück mal hierdrauf</button>
</div>

JavaScript

$( function() {
    $( "#dialog" ).dialog();
  } );
  
  $('button').click(function(){
    alert('kacken');
});