summaryrefslogtreecommitdiff
path: root/webapp/src/components.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-09-07 09:54:27 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-09-07 09:54:27 -0400
commit865a3eb1066f5bb140a6ce603e1162460a336934 (patch)
tree6ce0959e53ab17dfdb109b6dd62c6a0033b0ae63 /webapp/src/components.rs
parentcab440c8a209ae92eba07d50f7b7127dadbd65c0 (diff)
Add interactive bidding component
Diffstat (limited to 'webapp/src/components.rs')
-rw-r--r--webapp/src/components.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/webapp/src/components.rs b/webapp/src/components.rs
index fed31b0..e13d372 100644
--- a/webapp/src/components.rs
+++ b/webapp/src/components.rs
@@ -4,10 +4,12 @@ mod card;
mod hand;
mod bidding_table;
mod bidding_box;
+mod bidding;
pub use self::card::*;
pub use self::bidding_box::*;
pub use self::bidding_table::*;
+pub use self::bidding::*;
pub use self::hand::*;
pub fn suit_css_class(suit: Suit) -> &'static str {