"use client"; // pages/analogeEingaenge.js import React, { useState } from "react"; import AnalogeEingaengeComponent from "../components/modules/AnalogeEingaengeComponent"; function AnalogeEingaenge() { const [activeConfig, setActiveConfig] = useState(null); // Mock-Daten für XIO-PM 1 const xioPmInputs = [ { id: 1, value: 1.34, name: "Test1", uW: true, uG: true, oW: false, oG: true, }, { id: 2, value: 7.94, name: "----", uW: true, uG: true, oW: true, oG: true, }, { id: 3, value: 7.94, name: "----", uW: false, uG: true, oW: true, oG: true, }, { id: 4, value: 7.94, name: "----", uW: true, uG: true, oW: true, oG: true, }, { id: 5, value: 6.13, name: "----", uW: true, uG: true, oW: true, oG: true, }, { id: 6, value: 8.77, name: "----", uW: true, uG: true, oW: false, oG: true, }, { id: 7, value: 10.59, name: "----", uW: true, uG: true, oW: true, oG: true, }, { id: 8, value: 15.11, name: "----", uW: true, uG: true, oW: false, oG: true, }, ]; return (
{/* Main Content */}
{/*Erste Box -> Analoge Eingänge */} {/* Zweite Box */}

Diagramm

Diagramm wird hier eingefügt

{/* Dritte Box */}

XIO-PM 1

{xioPmInputs.map((input) => ( ))}
Eingang Wert Bezeichnung uW uG oW oG Aktion
{input.id} {input.value} {input.name}
{/* Vierte Box */}

XIO-PM 2

Inhalt für XIO-PM 2 wird hier eingefügt

); } export default AnalogeEingaenge;