helloworld.rs 282 B

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