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 224177b..60c310e 100644 --- a/webapp/src/components.rs +++ b/webapp/src/components.rs @@ -2,6 +2,7 @@ use crate::card::Suit; mod app_context_provider; mod bidding; +mod error_info; mod bidding_box; mod bidding_table; mod card; @@ -21,6 +22,7 @@ pub use self::hand::*; pub use self::show_bid::*; pub use self::trick_in_play::*; pub use self::tricks_played::*; +pub use self::error_info::*; pub fn suit_css_class(suit: Suit) -> &'static str { match suit { |