JSFiddle - React, Tailwind, and code Playground

by nikhilpatil

HTML

<button onclick="showDialog();">Dialog</button>

JavaScript

function showDialog(){
var settings = "dialogHeight: 530px; dialogWidth: 560px;  resizable: off; scroll: off; status: off; center: on;";	
	window.showModalDialog("/", window, settings);
}