Refactor imports to use the builder store for state management across analysis components

This commit is contained in:
2025-05-14 10:08:55 +05:30
parent 1c31fa5bcb
commit 3ccfc54922
6 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
import React, { useEffect } from 'react'
import { useInputValues, useProductionCapacityData } from '../../../../store/store';
import { useInputValues, useProductionCapacityData } from '../../../../store/builder/store';
export default function ROIData() {
const { inputValues } = useInputValues();

View File

@@ -1,5 +1,5 @@
import React, { useEffect } from 'react'
import { useInputValues, useProductionCapacityData, useThroughPutData } from '../../../../store/store'
import { useInputValues, useProductionCapacityData, useThroughPutData } from '../../../../store/builder/store'
export default function ProductionCapacityData() {
const { throughputData } = useThroughPutData()

View File

@@ -3,7 +3,7 @@ import { useSelectedProduct } from '../../../../store/simulation/useSimulationSt
import { useProductStore } from '../../../../store/simulation/useProductStore';
import { determineExecutionMachineSequences } from '../../simulator/functions/determineExecutionMachineSequences';
import { useArmBotStore } from '../../../../store/simulation/useArmBotStore';
import { useMachineCount, useMachineUptime, useMaterialCycle, useThroughPutData } from '../../../../store/store';
import { useMachineCount, useMachineUptime, useMaterialCycle, useThroughPutData } from '../../../../store/builder/store';
import { useVehicleStore } from '../../../../store/simulation/useVehicleStore';
import { useMachineStore } from '../../../../store/simulation/useMachineStore';
import { useConveyorStore } from '../../../../store/simulation/useConveyorStore';