import React from 'react'; import { useGameStore } from '../../store/gameState'; export const Dashboard: React.FC = () => { const { week, day, anomaly, political, trust, entropy } = useGameStore(); return (
Week {week} Day {day} / 5
Data (Anomaly) {anomaly}
Pol. Capital {political}
Trust {trust}%
Entropy {entropy}%
); };