From d4650a3160d52d289686fb59efbf8f0a436b71eb Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sun, 13 Nov 2022 16:07:27 -0500 Subject: Add create/leave table options --- webapp/src/components.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'webapp/src/components.rs') diff --git a/webapp/src/components.rs b/webapp/src/components.rs index 0326c09..018b1c3 100644 --- a/webapp/src/components.rs +++ b/webapp/src/components.rs @@ -2,29 +2,29 @@ use crate::card::Suit; mod app_context_provider; mod bidding; -mod error_info; mod bidding_box; mod bidding_table; mod card; +mod error_info; mod game; mod hand; mod show_bid; +mod table; mod trick_in_play; mod tricks_played; -mod table; pub use self::app_context_provider::*; pub use self::bidding::*; pub use self::bidding_box::*; pub use self::bidding_table::*; pub use self::card::*; +pub use self::error_info::*; pub use self::game::*; pub use self::hand::*; pub use self::show_bid::*; +pub use self::table::*; pub use self::trick_in_play::*; pub use self::tricks_played::*; -pub use self::error_info::*; -pub use self::table::*; pub fn suit_css_class(suit: Suit) -> &'static str { match suit { -- cgit v1.2.3