- Added Analyzer component to perform asset analysis and system-wide metrics. - Integrated analysis store to manage analysis state and data. - Updated Simulation component to include Analyzer and log analysis data. - Refactored heatmap generation to remove unnecessary console logs. - Disabled download option in simulation handler for heatmap generation. - Removed simulation socket initialization from Project component. - Enhanced SCSS styles for simulation dashboard with pointer-events adjustments. - Added comprehensive analysis types for various assets including conveyors, vehicles, and machines. - Deleted package-lock.json to resolve dependency issues.
16 lines
385 B
TypeScript
16 lines
385 B
TypeScript
import ProductionCapacityData from "./productionCapacity/productionCapacityData";
|
|
import ThroughPutData from "./throughPut/throughPutData";
|
|
import ROIData from "./ROI/roiData";
|
|
|
|
function SimulationAnalysis() {
|
|
return (
|
|
<>
|
|
<ThroughPutData />
|
|
<ProductionCapacityData />
|
|
<ROIData />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default SimulationAnalysis;
|