Skip to content
Snippets Groups Projects
Garten.tsx 386 B
Newer Older

import DropDownFilter from "../components/DropDownFilter";

function Garten() {
  return (
    <div>
      <h2>Dein Garten</h2>
      <DropDownFilter
        topic={"Sortierung der Pflanzen im Garten"}
        options={[
          "neueste zuerst",
          "als nächstes anpflanzbar",
          "als nächstes erntbar",
        ]}
      />