first commit

This commit is contained in:
ISA
2024-04-15 10:37:53 +02:00
commit afee410333
736 changed files with 110561 additions and 0 deletions

13
pages/KartenSeite.js Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import KartenKomponente from '../components/KartenKomponente'; // Passen Sie den Importpfad nach Bedarf an
const KartenSeite = () => {
return (
<div className="container mx-auto p-4">
<h1 className="text-xl font-bold mb-4">Kartenansicht</h1>
<KartenKomponente />
</div>
);
};
export default KartenSeite;