Untitled

Anonymous
plain_text
10/30/2023 8:18 PM
328 B
14
Indexable
export type MealsCardType = {
  idMeal: number,
  strMealThumb: string,
  strMeal: string,
  strInstructions: string
};

export type DrinksCardType = {
  idDrink: number,
  strDrinkThumb: string,
  strDrink: string,
  strInstructions: string,
};
Editor is loading...