From 374d40b42b173bd772052ecccd2e15dfa961b6e1 Mon Sep 17 00:00:00 2001 From: Hannah Holzheu <hh062@hdm-stuttgart.de> Date: Wed, 13 Dec 2023 17:28:54 +0100 Subject: [PATCH] added DropDown Filter for sorting in Garden #15 --- growbros-frontend/src/pages/Garten.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/growbros-frontend/src/pages/Garten.tsx b/growbros-frontend/src/pages/Garten.tsx index 00a28f8..5df9995 100644 --- a/growbros-frontend/src/pages/Garten.tsx +++ b/growbros-frontend/src/pages/Garten.tsx @@ -1,10 +1,18 @@ -import PlantsOverview from "../components/PlantsOverview"; + +import DropDownFilter from "../components/DropDownFilter"; function Garten() { return ( <div> <h2>Dein Garten</h2> - <PlantsOverview /> + <DropDownFilter + topic={"Sortierung der Pflanzen im Garten"} + options={[ + "neueste zuerst", + "als nächstes anpflanzbar", + "als nächstes erntbar", + ]} + /> </div> ); } -- GitLab