JSFiddle - React, Tailwind, and code Playground

CSS

*
{
    box-sizing: border-box;
}

JavaScript

$(function (){
		var content = $('<div style="background-color: yellow">aaaaaa</div>');
		var dialog = $(content)
			.dialog({
				autoOpen: true,
				modal: true,
				width: 300,
				height: 300,
				title: "MyTitle",
				resizable: true,
				position: "center",
				overflow: "auto"
			});
			dialog.dialog('open');
			});