dioxus/examples/button.rs

12 lines
171 B
Rust
Raw Normal View History

2022-12-22 19:45:48 +00:00
use dioxus::prelude::*;
fn main() {
dioxus_desktop::launch(app);
}
fn app(cx: Scope) -> Element {
cx.render(rsx! {
button { "hello, desktop!" }
})
}