hello_world.rs 185 B

1234567891011
  1. use dioxus::prelude::*;
  2. fn main() {
  3. dioxus::desktop::launch(App);
  4. }
  5. fn App((cx, props): ScopeState<()>) -> Element {
  6. cx.render(rsx! (
  7. div { "Hello, world!" }
  8. ))
  9. }