diff options
Diffstat (limited to 'webapp/src/components.rs')
-rw-r--r-- | webapp/src/components.rs | 2 |
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 { |