JSFiddle - React, Tailwind, and code Playground

by Chase Wilson

JavaScript

var new View({
    events: {
        "click .some-reference": function (event, viewInstance) {
            (this.className === 'some-reference') // true
            viewInstance.method() // Heyo!
        }
    },
    method: function ()  {
      return "Heyo!"
    }   
})