dioxus/examples/hello_world.rs
2024-01-16 13:18:46 -06:00

11 lines
138 B
Rust

use dioxus::prelude::*;
fn main() {
launch_desktop(app);
}
fn app() -> Element {
rsx! {
div { "Hello, world!" }
}
}