2026-03-09 10:36:03 +08:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import dynamic from "next/dynamic";
|
2026-04-08 06:53:49 +08:00
|
|
|
import { DashboardShellSkeleton } from "@/components/dashboard/DashboardShellSkeleton";
|
2026-03-09 10:36:03 +08:00
|
|
|
|
2026-04-23 23:49:52 +08:00
|
|
|
const ScanTerminalDashboard = dynamic(
|
2026-03-09 10:36:03 +08:00
|
|
|
() =>
|
2026-04-23 23:49:52 +08:00
|
|
|
import("@/components/dashboard/ScanTerminalDashboard").then(
|
|
|
|
|
(module) => module.ScanTerminalDashboard,
|
2026-03-09 10:36:03 +08:00
|
|
|
),
|
|
|
|
|
{
|
|
|
|
|
ssr: false,
|
2026-04-08 06:53:49 +08:00
|
|
|
loading: () => <DashboardShellSkeleton />,
|
2026-03-09 10:36:03 +08:00
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export function DashboardEntry() {
|
2026-04-23 23:49:52 +08:00
|
|
|
return <ScanTerminalDashboard />;
|
2026-03-09 10:36:03 +08:00
|
|
|
}
|