JSFiddle - React, Tailwind, and code Playground

by Kristian Jabilles

HTML

<div class="articles-list"></div>

JavaScript

function solution() {
    const url = "http://dummy.restapiexample.com/api/v1/employees";
    // You can write to stdout for debugging purposes, e.g.
    // console.log('this is a debug message');
    fetch(url).then(response => {
    	console.log(response)
    })
}

solution();