helloworld.rs 221 B

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