OPCUA Info Lesen in dashboard

This commit is contained in:
ISA
2025-02-10 07:38:09 +01:00
parent 34ff252d80
commit 89c36fc071
12 changed files with 108 additions and 41 deletions

View File

@@ -5,13 +5,13 @@ import Chart from "chart.js/auto";
import { useSelector } from "react-redux";
import KueModal from "../../modales/kueModal/KueModal";
import "bootstrap-icons/font/bootstrap-icons.css"; // Import Bootstrap Icons
import { RootState } from "../../../redux/store/store";
import { RootState } from "../../../redux/store";
import { DataTDR } from "../../../redux/types/chartDataTypesTDR";
import { useDispatch } from "react-redux";
import {
setSelectedChartData,
setSelectedFileName,
} from "../../../redux/store/variablesSlice";
} from "../../../redux/slices/variablesSlice";
const TDRChartActionBar: React.FC = () => {
const [jahr, setJahr] = useState(new Date().getFullYear());
const [monat, setMonat] = useState(new Date().getMonth() + 1);