helloworld.rs 246 B

123456789101112
  1. use dioxus_core as dioxus;
  2. use dioxus_web::prelude::*;
  3. fn main() {
  4. wasm_bindgen_futures::spawn_local(dioxus_web::WebsysRenderer::start(App))
  5. }
  6. fn App(cx: Context<()>) -> VNode {
  7. cx.render(rsx! {
  8. div { "Hello, world!" }
  9. })
  10. }