integerated version context with scene context
This commit is contained in:
@@ -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 <></>;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user