diff --git a/app/components/GameScreen.tsx b/app/components/GameScreen.tsx index 31e95fa..8a697a0 100644 --- a/app/components/GameScreen.tsx +++ b/app/components/GameScreen.tsx @@ -23,6 +23,7 @@ type GameScreenProps = { canGoBack: boolean; onRetry: () => void; onNextRound: () => void; + onStartGame: () => void; onResetGame: () => void; onSurrender: () => void; }; @@ -44,6 +45,7 @@ export function GameScreen({ canGoBack, onRetry, onNextRound, + onStartGame, onResetGame, onSurrender, }: GameScreenProps) { @@ -201,7 +203,7 @@ export function GameScreen({

{isHost && (
-