dioxus/examples/hello_world.rs

12 lines
158 B
Rust
Raw Normal View History

2021-10-27 18:54:49 +00:00
use dioxus::prelude::*;
fn main() {
dioxus_desktop::launch(app);
2021-10-27 18:54:49 +00:00
}
2021-12-30 02:28:28 +00:00
fn app(cx: Scope) -> Element {
render! {
2021-10-27 18:54:49 +00:00
div { "Hello, world!" }
}
2021-10-27 18:54:49 +00:00
}