JSFiddle - React, Tailwind, and code Playground

HTML

<div id="dialog" title="Select Gender">    
    Male <input type="radio" name="gender" value="male"/>
    Female <input type="radio" name="gender" value="female"/>
</div>

CSS

#dialog{
    background-color: green;
}

JavaScript

/*$('#dialog').dialog({
    modal: true,
    autoOpen: true
});*/