JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/humanity/jquery-ui.css">
<div id="popupTest" title="Stackoverflow Example">
<p>Hello, world.</p>
<p>Care for a cup of tea?</p>
</div>
JavaScript
$(document).ready(function() {
$('#popupTest').dialog();
});