feat: FRO-24 Create Played Cards Component (#17)

Reviewed-on: #17
Reviewed-by: lq64 <lq@blackhole.local>
Co-authored-by: Janis <janis.e.20@gmx.de>
Co-committed-by: Janis <janis.e.20@gmx.de>
This commit is contained in:
2025-12-10 16:46:34 +01:00
committed by lq64
parent 0b05cba25f
commit 21db939d34
2 changed files with 44 additions and 1 deletions

View File

@@ -34,7 +34,7 @@ type Round = {
}
type Trick = {
cards: { [player: string]: Card }
cards: Map<Player, Card>
firstCard: Card | null
winner: Player | null
}