mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
28 lines
631 B
Rust
28 lines
631 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! (
|
|
div {
|
|
p {
|
|
a {
|
|
href: "http://dioxuslabs.com/",
|
|
"default link"
|
|
}
|
|
}
|
|
p {
|
|
a {
|
|
href: "http://dioxuslabs.com/",
|
|
prevent_default: "onclick",
|
|
onclick: |_| {
|
|
println!("Hello Dioxus");
|
|
},
|
|
"custom event link",
|
|
}
|
|
}
|
|
}
|
|
))
|
|
}
|