JSFiddle - React, Tailwind, and code Playground

by lchau

JavaScript

var Etch;
(function (Etch) {
    Etch.alerts = {
        el: 'someElement',
        alert: null,
        init: function (el) {
            console.log('element: ' + el + ' ' + Etch.alerts.el);
            return this;
        }
    };
})(Etch || (Etch = {}));
var wow = Etch.alerts.init('.etch-modules-alerts__wrapper');
console.log(wow);