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

{ "Hello World" }

} } fn main() { yew::start_app::(); }