diff --git a/src/components/board.rs b/src/components/board.rs index 721d7b3..0b0e6f4 100644 --- a/src/components/board.rs +++ b/src/components/board.rs @@ -74,21 +74,23 @@ pub fn BoardCreator( "·", - CellContent::Player => "○", - CellContent::Trap => "×", - } - }; - + children=move |col| { view! { } } @@ -99,11 +101,11 @@ pub fn BoardCreator(
{move || if current_turn.get() == 0 { - "Place your piece in the bottom row" + "Choose a starting square" } else if finished.get() { "Board complete!" } else { - "Move your piece or place a trap in adjacent squares" + "Select an adjascent square to move your piece or place a trap." }}