diff --git a/package.json b/package.json index 21166d4..920486e 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,6 @@ "version": "0.1.0", "private": true, "dependencies": { - "@material-ui/core": "^4.9.0", "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.4.0", "@testing-library/user-event": "^7.2.1", diff --git a/public/index.html b/public/index.html index 3557e05..9c3796d 100644 --- a/public/index.html +++ b/public/index.html @@ -4,7 +4,7 @@ - + diff --git a/src/components/CardEntry.js b/src/components/CardEntry.js index ef9739d..65bb6fb 100644 --- a/src/components/CardEntry.js +++ b/src/components/CardEntry.js @@ -8,7 +8,7 @@ export const CardEntry = props => {
  • -
    +
    {strMeal}
    diff --git a/src/components/CategoryEntry.js b/src/components/CategoryEntry.js index c506fa7..6c383af 100644 --- a/src/components/CategoryEntry.js +++ b/src/components/CategoryEntry.js @@ -12,18 +12,22 @@ const CategoryEntry = props => { return ( // - +
  • -
    -
    - {strCategory} +
    +
    + {strCategory} {/* {strCategory} */}
    -

    {strCategory}

    +

    {strCategory}

    {strCategoryDescription}

    diff --git a/src/components/CopyrightText.js b/src/components/CopyrightText.js index dcc57ba..5053f19 100644 --- a/src/components/CopyrightText.js +++ b/src/components/CopyrightText.js @@ -3,7 +3,7 @@ import React from "react"; export const CopyrightText = () => { return ( - © 2020 - Chef's - Made with{" "} + © 2020 - Chef's - Made with{" "} ❤️ diff --git a/src/components/IngredientList.js b/src/components/IngredientList.js index 7101acb..115fece 100644 --- a/src/components/IngredientList.js +++ b/src/components/IngredientList.js @@ -4,14 +4,22 @@ export const IngredientList = props => { const { ingredients } = props; return (
    -

    Ingredients

    -
      - {ingredients.map((ing, i) => ( -
    • - {ing[0]}: {ing[1]} -
    • - ))} -
    + + + + + + + + + {ingredients.map((ing, i) => ( + + + + + ))} + +
    IngredientQuantity
    {ing[0]}{ing[1]}
    ); }; diff --git a/src/components/Logo.js b/src/components/Logo.js index d7bf2ea..bc67a88 100644 --- a/src/components/Logo.js +++ b/src/components/Logo.js @@ -3,10 +3,10 @@ import { Link } from "react-router-dom"; export const Logo = () => { return ( -
    +
    - 👩‍🍳 Chef's + 👩‍🍳 Chef's
    diff --git a/src/components/Recipe.js b/src/components/Recipe.js index 4447780..6119ab6 100644 --- a/src/components/Recipe.js +++ b/src/components/Recipe.js @@ -4,7 +4,7 @@ export const Recipe = props => { return (

    Instructions

    -
    +

    {props.recipe}

    ); }; diff --git a/src/components/SearchBar.js b/src/components/SearchBar.js index 8474380..68a636a 100644 --- a/src/components/SearchBar.js +++ b/src/components/SearchBar.js @@ -16,7 +16,7 @@ export const SearchBar = props => { />