Files
CPLv4.0/pages/dashboard.tsx
ISA 454b8bfb8d refactor: move analog inputs logic to AnalogInputsView component
- Verschiebt die gesamte UI-Logik aus pages/analogInputs.tsx in eine eigene Komponente AnalogInputsView.tsx
- pages/analogInputs.tsx dient jetzt nur noch als Router-Einstiegspunkt
- Vereinheitlicht die Struktur wie bei MeldungenView und DashboardView
2025-07-08 11:42:08 +02:00

15 lines
331 B
TypeScript

// pages/dashboard.tsx
import React from "react";
import dynamic from "next/dynamic";
// Dynamisches Importieren der eigentlichen UI-Komponente
const DashboardView = dynamic(
() => import("@/components/main/dashboard/DashboardView"),
{ ssr: false }
);
export default function DashboardPage() {
return <DashboardView />;
}