Mit grafischer Auswertung

This commit is contained in:
rxf
2026-03-06 08:51:21 +01:00
parent 1575c4389e
commit 9bce2495b0
7 changed files with 368 additions and 7 deletions

16
app/charts/page.tsx Normal file
View File

@@ -0,0 +1,16 @@
'use client';
import dynamic from 'next/dynamic';
const ChartsClient = dynamic(() => import('@/components/ChartsClient'), {
ssr: false,
loading: () => (
<div className="min-h-screen bg-white flex items-center justify-center">
<span className="text-gray-500">Lade Grafiken</span>
</div>
),
});
export default function ChartsPage() {
return <ChartsClient />;
}