JSFiddle - React, Tailwind, and code Playground
by dreiv
JavaScript
const endpoint = 'https://api.weather.gov/stations/';
async function getStations() {
const response = await fetch(endpoint);
const data = await response.json();
stationInfo = data.observationStations
}
getStations();