JSFiddle - React, Tailwind, and code Playground

by Yuriy Petrichenko

JavaScript

const mainAddress = 'https://mon-backend.herokuapp.com/';


fetch(mainAddress + "/blogs/get-blogs").then(res => res.json())
.then(data => {
	console.log(data);
})