JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

fetch('https://course-js.javascript.ru/api/dashboard/sales?from=2020-04-06T00%3A00%3A00.000Z&to=2020-05-06T00%3A00%3A00.000Z')
.then(response => {
  console.log(response);
  return response.json();
})
.then(data => {
  console.log(data);
})
.catch(error => {
  console.error(error);
})