feat(ui): FRO-34 Lobby (#21)

Started with Lobby Component

Co-authored-by: LQ63 <lkhermann@web.de>
Co-authored-by: Janis <janis-e@gmx.de>
Reviewed-on: #21
Reviewed-by: Janis <janis-e@gmx.de>
Co-authored-by: lq64 <lq@blackhole.local>
Co-committed-by: lq64 <lq@blackhole.local>
This commit is contained in:
2025-12-14 15:10:27 +01:00
committed by Janis
parent f0623dbfb2
commit bb6355d9ed
24 changed files with 408 additions and 140 deletions

View File

@@ -16,7 +16,7 @@ type Player = {
type PlayerQueue = {
currentPlayer: Player | null
players: Player[]
queue: Player[]
}
type PodiumPlayer = {
@@ -34,7 +34,7 @@ type Round = {
}
type Trick = {
cards: Map<Player, Card>
cards: { [key: string]: Card} | null
firstCard: Card | null
winner: Player | null
}