From b10b534ab6507ed2c2d1a62d61f3213397a288e5 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Thu, 6 Oct 2022 19:47:58 -0400 Subject: Run `cargo fmt` --- webapp/src/components.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'webapp/src/components.rs') 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 { -- cgit v1.2.3