JSFiddle - React, Tailwind, and code Playground

by HYEONGJINKIM

JavaScript

// IIFE - Immediately Invoked Function Expression
  (function (yourcode) {
      yourcode(window.jQuery, window, document);      
  }(function ($, window, document) {
      // The $ is now locally scoped       
      $(function () {
          // The DOM is ready!
      });
      // The rest of your code goes here!
  }));