@switch (gameState()) { @case ('instructions') {

Estás por iniciar el juego

} @case ('pre-game-countdown') {

El juego inicia en...

} @case ('playing') { @if (currentQuestion(); as question) {

{{ question.question }}

@for (answer of question.answers; track answer.answer_id) { }
} } @case ('question-feedback') { @if (currentQuestion(); as question) {

{{ question.question }}

@for (answer of question.answers; track answer.answer_id) { }
} } @case ('game-over') {

{{ userDisplayName() }}
tu puntaje es

{{ totalScore() }}

puntos

chevron_left Regresar
} }