dioxus/examples/hello_world.rs
2022-01-07 22:13:05 -05:00

11 lines
167 B
Rust

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