JSFiddle - React, Tailwind, and code Playground
by Jacob King
JavaScript
fetch('https://jsonplaceholder.typicode.com/users/1')
.then(res => res.json())
.then(user => console.log(user));
by Jacob King
fetch('https://jsonplaceholder.typicode.com/users/1')
.then(res => res.json())
.then(user => console.log(user));