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 ( <> ) } export default SimulationAnalysis