26 lines
677 B
TypeScript
26 lines
677 B
TypeScript
import React, { useEffect } from 'react'
|
|
import { usePlayButtonStore } from '../../../store/usePlayButtonStore'
|
|
import ProductionCapacityData from './productionCapacity/productionCapacityData'
|
|
import ThroughPutData from './throughPut/throughPutData'
|
|
import ROIData from './ROI/roiData'
|
|
|
|
function SimulationAnalysis() {
|
|
const { isPlaying } = usePlayButtonStore()
|
|
// useEffect(()=>{
|
|
// if (isPlaying) {
|
|
//
|
|
// } else {
|
|
//
|
|
// }
|
|
// },[isPlaying])
|
|
return (
|
|
<>
|
|
<ThroughPutData />
|
|
<ProductionCapacityData />
|
|
<ROIData />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default SimulationAnalysis
|