summaryrefslogtreecommitdiff
path: root/webapp/src/components.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-09-07 21:03:07 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-09-07 21:05:17 -0400
commitf92ca7acbf6998f8cd2cb6b7e1116fcbd29767e4 (patch)
tree597eb56bfda5a11fddded9a1e739e42abe0a435d /webapp/src/components.rs
parent1fa6d19a698f62ea2e57164fa1e5f088a8e2ac62 (diff)
Add game component integrated with 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 e13d372..6d9a5ec 100644
--- a/webapp/src/components.rs
+++ b/webapp/src/components.rs
@@ -5,11 +5,13 @@ mod hand;
mod bidding_table;
mod bidding_box;
mod bidding;
+mod game;
pub use self::card::*;
pub use self::bidding_box::*;
pub use self::bidding_table::*;
pub use self::bidding::*;
+pub use self::game::*;
pub use self::hand::*;
pub fn suit_css_class(suit: Suit) -> &'static str {