JSFiddle - React, Tailwind, and code Playground

by Brad Christie

JavaScript

window.App = window.App || {};

(function(global){
    global.test = function(){
        alert('Hello, world!');
    };
})(window.App);

$(function(){
    App.test();
});