# UI Page Erstelle eine neue vollständige Seite für Mitai Jinkendo. ## Seiten-Struktur: ```jsx import { useState, useEffect } from 'react' import { api } from '../utils/api' import { useAuth } from '../context/AuthContext' export default function MeineSeite() { const { session } = useAuth() const [data, setData] = useState([]) const [loading, setLoading] = useState(true) const [error, setError] = useState(null) useEffect(() => { load() }, []) const load = async () => { try { setLoading(true) const result = await api.meinEndpoint() setData(result) } catch(e) { setError(e.message) } finally { setLoading(false) } } if (loading) return
if (error) return