Untitled
unknown
plain_text
2 years ago
254 B
8
Indexable
export const mealsCategories = async () => { const meals = await fetch('https://www.themealdb.com/api/json/v1/1/list.php?c=list'); const mealsJson = await meals.json(); const limitedResults = mealsJson.meals.slice(0, 5); return limitedResults; };
Editor is loading...