refactor: extract Kabelueberwachung logic into KabelueberwachungView for better structure

This commit is contained in:
ISA
2025-07-08 13:13:30 +02:00
parent 454b8bfb8d
commit b091a8d82a
14 changed files with 423 additions and 397 deletions

View File

@@ -1,13 +1,4 @@
// 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 }
);
import DashboardView from "@/components/main/dashboard/DashboardView";
export default function DashboardPage() {
return <DashboardView />;