diff options
Diffstat (limited to 'ui/src/components/mod.rs')
| -rw-r--r-- | ui/src/components/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/src/components/mod.rs b/ui/src/components/mod.rs index cb9ec1b..3c51535 100644 --- a/ui/src/components/mod.rs +++ b/ui/src/components/mod.rs @@ -7,6 +7,8 @@ pub mod admin; pub mod login; pub mod message; +pub mod node_card; +pub mod node_list; pub mod node_page; pub mod props; pub mod stats; @@ -17,6 +19,7 @@ use crate::{ admin::{AdminDashboard, AdminImport}, login::{AccountLogin, AccountLogout, AccountSetPassword}, message::Message, + node_list::NodeList, node_page::NodePage, }, }; @@ -31,6 +34,9 @@ define! { @if let Some(nku) = view.get(VIEW_NODE_PAGE) { @NodePage { ri, nku } } + @if let Some(nl) = view.get(VIEW_NODE_LIST) { + @NodeList { ri, nl } + } @if let Some(()) = view.get(VIEW_ACCOUNT_LOGIN) { @AccountLogin { ri } } |