Skip to content
Snippets Groups Projects
Garten.tsx 195 B
Newer Older
import PlantsOverview from "../components/PlantsOverview";

function Garten() {
  return (
    <div>
      <h2>Dein Garten</h2>
      <PlantsOverview />
    </div>
  );
}

export default Garten;