diff --git a/board-frontend/src/app.rs b/board-frontend/src/app.rs index df22353..c431968 100644 --- a/board-frontend/src/app.rs +++ b/board-frontend/src/app.rs @@ -1,6 +1,6 @@ use crate::hand_view::HandView; use crate::tile_view::PlacedTileView; -use board_shared::board::Board; +use board_shared::board::{self, Board}; use board_shared::expr::is_valid_guess; use board_shared::game::Game; use board_shared::tile::Tile; @@ -23,9 +23,9 @@ struct BoardViewProps { fn board_view(BoardViewProps { board, on_click }: &BoardViewProps) -> Html { html! {