JSFiddle - React, Tailwind, and code Playground

by Abhisek DasGupta

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;
};