diff options
Diffstat (limited to 'webapp/src/components/game.rs')
-rw-r--r-- | webapp/src/components/game.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/webapp/src/components/game.rs b/webapp/src/components/game.rs index 91b3022..b42f912 100644 --- a/webapp/src/components/game.rs +++ b/webapp/src/components/game.rs @@ -2,7 +2,7 @@ use crate::bridge_engine::{self, Contract, Player, DealInPlay, DealInPlayResult} use crate::card; use crate::card::Deal; use crate::card::Suit; -use crate::components::{Bidding, Hand, ShowBid, TrickInPlay}; +use crate::components::{Bidding, Hand, ShowBid, TrickInPlay, TricksPlayed}; use log::{error, info}; use yew::prelude::*; @@ -115,7 +115,7 @@ pub fn game() -> Html { } => { html! { <> - <p>{ "Time to play" }</p> + <TricksPlayed tricks={ playing_deal.tricks().clone() } /> <TrickInPlay in_progress={ playing_deal.trick_in_play().clone() } /> </> } @@ -129,7 +129,6 @@ pub fn game() -> Html { if let GameState::Play { contract, bidding, .. } = &*state { <ShowBid contract={contract.clone()} bidding={bidding.clone()}/> } - <p>{ format!("Phase: {:?}", &*state) }</p> <button onclick={shuffle}>{ "Shuffle" }</button> </div> <div class="center"> |