JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/smoothness/jquery-ui.css">
<div id="dialog" title="Your Title">
   Stuff!
</div>

JavaScript

$("#dialog").dialog({
    buttons: {
        Cancel: function () {
            $(this).dialog("close");
        }                    
    }
});