36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
"use client";
|
|
import React, { useState } from "react";
|
|
import Kue705FO from "../../components/modules/Kue705FO";
|
|
|
|
function Kabelueberwachung() {
|
|
const moduleValues = {
|
|
isolationswert: ">200",
|
|
schleifenwiderstand: "0.85",
|
|
};
|
|
|
|
return (
|
|
<div className="bg-gray-100 flex-1 p-4">
|
|
<h1 className="text-2xl mb-4">Kabelüberwachung</h1>
|
|
<div className="flex flex-row gap-4">
|
|
{/* Hier verwenden wir die Kue705FO-Komponente */}
|
|
<Kue705FO
|
|
isolationswert={moduleValues.isolationswert}
|
|
schleifenwiderstand={moduleValues.schleifenwiderstand}
|
|
/>
|
|
<Kue705FO isolationswert="150" schleifenwiderstand="1.00" />
|
|
<Kue705FO isolationswert="150" schleifenwiderstand="1.00" />
|
|
<Kue705FO isolationswert="150" schleifenwiderstand="1.00" />
|
|
<Kue705FO
|
|
isolationswert={moduleValues.isolationswert}
|
|
schleifenwiderstand={moduleValues.schleifenwiderstand}
|
|
/>
|
|
<Kue705FO isolationswert="150" schleifenwiderstand="1.00" />
|
|
<Kue705FO isolationswert="150" schleifenwiderstand="1.00" />
|
|
<Kue705FO isolationswert="150" schleifenwiderstand="1.00" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Kabelueberwachung;
|