use crate::user_table::UserTable; use yew::prelude::*; pub struct App {} pub enum Msg {} impl Component for App { type Message = Msg; type Properties = (); fn create(_: Self::Properties, _link: ComponentLink) -> Self { App {} } fn update(&mut self, _msg: Self::Message) -> ShouldRender { false } fn change(&mut self, _: Self::Properties) -> ShouldRender { false } fn view(&self) -> Html { html! {

{ "LLDAP" }

} } }