diff options
Diffstat (limited to 'webapp/src/components.rs')
-rw-r--r-- | webapp/src/components.rs | 8 |
1 files changed, 4 insertions, 4 deletions
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 { |