import React from "react"; import { Link, useRouteMatch } from "react-router-dom"; const CategoryEntry = ({ category }) => { const { strCategory, strCategoryThumb // strCategoryDescription } = category; const { url } = useRouteMatch(); return ( //
  • {strCategory}

    {strCategory}

    {/*

    {strCategoryDescription}

    */}
  • ); }; export default CategoryEntry;