dioxus/examples/hello_world.rs
2024-01-19 14:19:49 -08:00

11 lines
130 B
Rust

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