Mit grafischer Auswertung
This commit is contained in:
16
app/charts/page.tsx
Normal file
16
app/charts/page.tsx
Normal 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 />;
|
||||
}
|
||||
Reference in New Issue
Block a user