use yew::prelude::*; #[function_component] fn Login() -> Html { html! {

{"Welcome to Visions VTT"}

} } #[function_component] fn App() -> Html { html! { } } fn main() { yew::Renderer::::new().render(); }