hello_world.rs 158 B

1234567891011
  1. use dioxus::prelude::*;
  2. fn main() {
  3. dioxus_desktop::launch(app);
  4. }
  5. fn app(cx: Scope) -> Element {
  6. render! {
  7. div { "Hello, world!" }
  8. }
  9. }