diff --git a/src/components/pages/Bookmark.jsx b/src/components/pages/Bookmark.jsx index fdd2cd8..aad7758 100644 --- a/src/components/pages/Bookmark.jsx +++ b/src/components/pages/Bookmark.jsx @@ -2,7 +2,6 @@ import RecipeList from "../store/recipe-context" import { useContext } from "react"; import { Link } from "react-router-dom"; - function Bookmark() { const recipeContext = useContext(RecipeList); const loadedRecipe = useContext(RecipeList).recipeList; @@ -24,6 +23,7 @@ function Bookmark() {

{loadedRecipe[i].name}

{/* //? name of recipe */}

{loadedRecipe[i].description}

{/* //? small description of the recipe */} + ); }