hello_world_web.rs 208 B

1234567891011121314
  1. #![allow(non_snake_case)]
  2. use dioxus::prelude::*;
  3. fn main() {
  4. dioxus_web::launch(App);
  5. }
  6. fn App(cx: Scope) -> Element {
  7. cx.render(rsx! {
  8. div {
  9. "Hello, world!"
  10. }
  11. })
  12. }