////////// PROJECT FILE SEPARATION LINE ////////// CODE AFTER THIS LINE ARE FROM: /Data/WebUI/src/Status_Bar.jsx import React from "react"; import { Box, Button, Divider } from "@mui/material"; export default function StatusBar() { const applyRate = () => { const val = parseInt( document.getElementById("updateRateInput")?.value ); if (!isNaN(val) && val >= 50) { window.BorealisUpdateRate = val; console.log("Global update rate set to", val + "ms"); } else { alert("Please enter a valid number (min 50)."); } }; return ( Nodes: 0 Update Rate (ms): ); }