dioxus/examples/hello_world.rs

12 lines
167 B
Rust
Raw Normal View History

2021-10-27 14:54:49 -04:00
use dioxus::prelude::*;
fn main() {
2022-01-07 12:14:38 -05:00
dioxus::desktop::launch(app);
2021-10-27 14:54:49 -04:00
}
2021-12-29 21:28:28 -05:00
fn app(cx: Scope) -> Element {
2021-10-27 14:54:49 -04:00
cx.render(rsx! (
div { "Hello, world!" }
))
}