2025-04-25 19:31:56 +05:30
|
|
|
import { useEffect } from 'react'
|
|
|
|
|
import { useProductStore } from '../../../store/simulation/useProductStore'
|
2025-04-23 18:25:49 +05:30
|
|
|
|
|
|
|
|
function Simulator() {
|
2025-04-25 19:31:56 +05:30
|
|
|
const { products } = useProductStore();
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
// console.log('products: ', products);
|
|
|
|
|
}, [products])
|
|
|
|
|
|
2025-04-23 18:25:49 +05:30
|
|
|
return (
|
|
|
|
|
<>
|
2025-04-25 19:31:56 +05:30
|
|
|
|
2025-04-23 18:25:49 +05:30
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Simulator
|