diff options
Diffstat (limited to 'webapp/src/components.rs')
-rw-r--r-- | webapp/src/components.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/webapp/src/components.rs b/webapp/src/components.rs index 2bc8ff8..80b5a91 100644 --- a/webapp/src/components.rs +++ b/webapp/src/components.rs @@ -1,24 +1,24 @@ use crate::card::Suit; +mod bidding; +mod bidding_box; +mod bidding_table; mod card; +mod game; mod hand; -mod bidding_table; -mod bidding_box; -mod bidding; mod show_bid; -mod game; mod trick_in_play; mod tricks_played; -pub use self::trick_in_play::*; -pub use self::tricks_played::*; -pub use self::card::*; +pub use self::bidding::*; pub use self::bidding_box::*; pub use self::bidding_table::*; -pub use self::bidding::*; -pub use self::show_bid::*; +pub use self::card::*; pub use self::game::*; pub use self::hand::*; +pub use self::show_bid::*; +pub use self::trick_in_play::*; +pub use self::tricks_played::*; pub fn suit_css_class(suit: Suit) -> &'static str { match suit { |