JSFiddle - React, Tailwind, and code Playground

by peteorpeter

HTML

<h1>
 Coding Club Music Thingy
</h1>
<ul id="ArtistList">
</ul>

JavaScript

fetch('https://sheet2api.firebaseio.com/test/5lbon3em.json').then(function(response){
	return response.json();
}).then(function(artists){
	console.log(artists)
	artists.forEach(function(artist, index){
  	$('#ArtistList').prepend('<li>' + index + ': ' + artist['Full Name '] + '</li>');
  })  
})