JSFiddle - React, Tailwind, and code Playground

by gangadharjannu

HTML

<section>
  <header></header>
  <main></main>
</section>

JavaScript

var configJSON = {
    title:'Contact List',
    userUrl:'https://api.randomuser.me/',
    numberCards: 120,
    tabs: ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']
};
var ContactList = {

  init: function() {
    this.bindUIfunctions();
    this.pageLoadCorrectTab();
  },

  bindUIfunctions: function() {
  },

  changeTab: function(hash) {
  },

  pageLoadCorrectTab: function() {
  },

  toggleMobileMenu: function(event, el) {
  }

}