dioxus/examples/hello_world.rs
2024-01-11 12:11:27 -08:00

11 lines
158 B
Rust

use dioxus::prelude::*;
fn main() {
dioxus_desktop::launch(app);
}
fn app(cx: Scope) -> Element {
render! {
div { "Hello, world!" }
}
}