JSFiddle - React, Tailwind, and code Playground

JavaScript

enyo.singleton({
    name: "AppSettings",
    
    published: {
        server: "my.server.com"
    }
});

new enyo.Control({
    bindings: [
        {from: "^AppSettings.server", to: ".content"}
    ]
}).renderInto(document.body);