JSFiddle - React, Tailwind, and code Playground

by mkerny45

JavaScript

var APP = {
    init: function() {
        this.doIt();
    },
    
    method: function() {
        
    },
    
    doIt: function() {
        alert("Hi");
    }
    
};