JSFiddle - React, Tailwind, and code Playground
JavaScript
const mainAddress = 'https://mon-backend.herokuapp.com/';
fetch(mainAddress + "/blogs/get-blogs").then(res => res.json())
.then(data => {
console.log(data);
})
const mainAddress = 'https://mon-backend.herokuapp.com/';
fetch(mainAddress + "/blogs/get-blogs").then(res => res.json())
.then(data => {
console.log(data);
})