JSFiddle - React, Tailwind, and code Playground

by Rosberg Linhares

HTML

<div id="result"></div>

JavaScript

fetch('https://httpbin.org/encoding/utf8')
		.then(response => {
    		alert('before');
        alert(response.body);
    });