import React from "react"; import { Link } from "react-router-dom"; export const CardEntry = ({ item }) => { const { idMeal, strMeal, strMealThumb } = item; return (
  • {strMeal}

    {strMeal}

  • ); };