summaryrefslogtreecommitdiff
path: root/webapp/src/components.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-10-06 19:47:58 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-10-06 19:47:58 -0400
commitb10b534ab6507ed2c2d1a62d61f3213397a288e5 (patch)
treea4b51714e0fe7744ae4d550c1a84e48d81f0fcaa /webapp/src/components.rs
parent806faef4b75173892ecea4ccd4a14178320c89a4 (diff)
Run `cargo fmt`
Diffstat (limited to 'webapp/src/components.rs')
-rw-r--r--webapp/src/components.rs18
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 {