Back

Version 1

3/7/2023
export let fetchCat = async () => {
const result = await fetch("https://aws.random.cat/meow");
const json = await result.json();
return json.file;
};
Updated: October 23, 2023