diff options
Diffstat (limited to 'webapp/src/components/table.rs')
-rw-r--r-- | webapp/src/components/table.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webapp/src/components/table.rs b/webapp/src/components/table.rs index 794785f..78a5f91 100644 --- a/webapp/src/components/table.rs +++ b/webapp/src/components/table.rs @@ -88,13 +88,15 @@ pub fn online_table(props: &OnlineTableProps) -> Html { let center = match &*table_state { Some(GameStatePlayerView::Bidding(bidding)) => bidding_view(bidding, on_bid), - Some(GameStatePlayerView::Playing(playing)) => todo!(), + Some(GameStatePlayerView::Playing(playing)) => html! { + {"Need to implement this"} + }, None => html! { <p>{"Loading table"}</p> }, }; html! { <> - <>{ format!("This is table {}", props.table.id) }</p> + <p>{ format!("This is table {}", props.table.id) }</p> <button onclick={leave_table}> { "Leave table" } </button> |