JSFiddle - React, Tailwind, and code Playground

by William Sena

JavaScript

const axios = require('axios');

axios.defaults.baseURL = 'http://challenge.skyhub.com.br';
axios.defaults.headers.common['Authorization'] = 'f374060d-0067-4f57-902d-4fd5f1ee1fca'


axios.get('/platforms')
.then(res => console.log(res))
.catch((error) => console.error(error))