Skip to content
Snippets Groups Projects
Commit 374d40b4 authored by Holzheu Hannah's avatar Holzheu Hannah
Browse files

added DropDown Filter for sorting in Garden #15

parent 268c04a7
No related branches found
No related tags found
1 merge request!28Closes #40 : Custom useGrowbrosFetcher hook to make calls to the backend.
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>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment