feat(blackjack): add balance display to game result component

This commit is contained in:
Jan-Marlon Leibl 2025-04-02 12:58:12 +02:00
parent 68a226b677
commit 801edfe89e
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
2 changed files with 7 additions and 7 deletions

View file

@ -48,6 +48,7 @@
<app-game-result
[gameState]="gameState()"
[amount]="currentBet()"
[balance]="balance()"
[show]="showGameResult()"
(gameResultClosed)="onCloseGameResult()"
></app-game-result>