I am a JS noob so this is probably poorly thought out. But it is a wip and I dont really care about the quality, just more the learning experience.
5 lines
157 B
JavaScript
5 lines
157 B
JavaScript
export default async function fetchCurrent() {
|
|
const resp = await fetch("https://data.wowtoken.app/token/current.json");
|
|
return await resp.json();
|
|
}
|