integerated version context with scene context

This commit is contained in:
2025-09-05 15:17:43 +05:30
parent 884d424bda
commit 9904a5079d
119 changed files with 9540 additions and 12431 deletions

View File

@@ -1,10 +1,10 @@
import { useEffect } from 'react'
import { useInputValues, useProductionCapacityData, useThroughPutData } from '../../../../store/builder/store'
import { usePlayButtonStore } from '../../../../store/ui/usePlayButtonStore';
import { useEffect } from "react";
import { useInputValues, useProductionCapacityData, useThroughPutData } from "../../../../store/builder/store";
import { usePlayButtonStore } from "../../../../store/ui/usePlayButtonStore";
export default function ProductionCapacityData() {
const { throughputData } = useThroughPutData()
const { setProductionCapacityData } = useProductionCapacityData()
const { throughputData } = useThroughPutData();
const { setProductionCapacityData } = useProductionCapacityData();
const { inputValues } = useInputValues();
const { isPlaying } = usePlayButtonStore();
@@ -26,9 +26,5 @@ export default function ProductionCapacityData() {
}
}, [throughputData, inputValues, isPlaying]);
return (
<></>
)
return <></>;
}