From 5726bdb1540175c3e4461b55507c26a396b24e3d Mon Sep 17 00:00:00 2001 From: Anika Raemer Date: Sat, 13 Sep 2025 09:43:09 +0200 Subject: [PATCH] add search bar and add button to header - no functionality yet! --- .../src/components/recipes/RecipeListPage.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/recipes/RecipeListPage.tsx b/frontend/src/components/recipes/RecipeListPage.tsx index 327750e..90753e0 100644 --- a/frontend/src/components/recipes/RecipeListPage.tsx +++ b/frontend/src/components/recipes/RecipeListPage.tsx @@ -25,19 +25,27 @@ export default function RecipeListPage() { loadRecipeList() }, []) - if(!recipeList) { return
Unable to load recipes1
} + if(!recipeList) { return
Unable to load recipes!
} return ( /*Contaier spanning entire screen used to center content horizontally */
{/* Container defining the maximum width of the content */}
{/* Header - remains in position when scrolling */} -
+

Recipes

- +
+ + + +
{/*Content - List of recipe cards */} -
+
{recipeList.map((recipe) => (