FPSMS-frontend
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

21 строка
582 B

  1. import { I18nProvider } from "@/i18n";
  2. import ClientMonitorPage from "@/components/ClientMonitor/ClientMonitorPage";
  3. import { isMonitoringEnabled } from "@/config/monitoring";
  4. import { Metadata } from "next";
  5. import { redirect } from "next/navigation";
  6. export const metadata: Metadata = {
  7. title: "裝置連線監控",
  8. };
  9. export default function ClientMonitorRoutePage() {
  10. if (!isMonitoringEnabled) {
  11. redirect("/settings/user");
  12. }
  13. return (
  14. <I18nProvider namespaces={["clientMonitor", "navigation", "common"]}>
  15. <ClientMonitorPage />
  16. </I18nProvider>
  17. );
  18. }