summaryrefslogtreecommitdiff
path: root/webapp/src/components.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-11-05 18:06:54 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-11-05 18:37:09 -0400
commit50d6ef8ad0f344c9b510c6752119fa5983629d95 (patch)
treefedf2e0569750353a352500ac0ad85034828930d /webapp/src/components.rs
parent2d9d37bd5e4770a05cae780f2113266f3fdd0915 (diff)
Add table view and go to table automatically
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 60c310e..0326c09 100644
--- a/webapp/src/components.rs
+++ b/webapp/src/components.rs
@@ -11,6 +11,7 @@ mod hand;
mod show_bid;
mod trick_in_play;
mod tricks_played;
+mod table;
pub use self::app_context_provider::*;
pub use self::bidding::*;
@@ -23,6 +24,7 @@ pub use self::show_bid::*;
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 {