dioxus/examples/hello_world.rs

11 lines
149 B
Rust

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