JSFiddle - React, Tailwind, and code Playground

HTML

<div id="test"></div>

JavaScript

$('#test').dialog({
        modal: true,
        title: 'My Dialog Title',
        resizable: false,
        buttons: [
            {
                html: 'Ajouter L&#39;amie a la liste &quot;amies&quot;',
                click: function(){
                    // Do something important
                    $(this).dialog('close');
                }
            },
            {
                html: 'Cancel',
                click: function() {
                    $(this).dialog('close');
                }
            }
        ]
    });