JSFiddle - React, Tailwind, and code Playground
JavaScript
var MyEntitlements = makeClass(
{
say: function(message) {
return 'This person says: ' + message;
}
}
);
var test;
function makeClass(hello){
console.log(hello);
console.log(window);
window.MyEntitlements = hello;
};