JSFiddle - React, Tailwind, and code Playground
by serio
HTML
<link rel='stylesheet' href='http://jqueryui.com/themes/base/jquery.ui.all.css' />
<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
JavaScript
var dialog = $( '#dialog' ).dialog( { autoOpen: false } );
$( '.ui-dialog' ).fadeIn(800);