JSFiddle - React, Tailwind, and code Playground

by nfreitas

JavaScript

(function (global) {
    'use strict';

    global.SlideShow = function (domId) {
        this.container = document.getElementById(domId);
        this.pictures = [];
        this.currentPicture = 0;
        this.timer = null;
    };

}(window || this));