summaryrefslogtreecommitdiff
path: root/webapp/src/components.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-11-13 16:07:27 -0500
committerKjetil Orbekk <kj@orbekk.com>2022-11-13 16:07:27 -0500
commitd4650a3160d52d289686fb59efbf8f0a436b71eb (patch)
tree0b38d0143824a3a7cab83e189fe1a2302f9685a7 /webapp/src/components.rs
parent0012c25c9ab94754f3d6396e91dc3ae63d19ac9c (diff)
Add create/leave table options
Diffstat (limited to 'webapp/src/components.rs')
-rw-r--r--webapp/src/components.rs8
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 {