JSFiddle - React, Tailwind, and code Playground

JavaScript

$.getJSON('https://api.cdnjs.com/libraries/jquery', function(data) {
  var array = [];

  $.each(data, function(key, val) {
    array.push('<li id="' + key + '">' + val + '</li>');
  });

  $('<ul/>', {
    'class': 'jqlist',
    html: array.join('')
  }).appendTo('body');
});