mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
d9546d9504
* feat: use synchronous router design * feat: function to get router out of dom * chore: restructure workspace to use renderers as packages, not features
22 lines
483 B
Rust
22 lines
483 B
Rust
#![allow(non_snake_case)]
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(App);
|
|
}
|
|
|
|
// ANCHOR: component
|
|
fn App(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
form {
|
|
onsubmit: move |event| {
|
|
println!("Submitted! {event:?}")
|
|
},
|
|
input { name: "name", },
|
|
input { name: "age", },
|
|
input { name: "date", },
|
|
input { r#type: "submit", },
|
|
}
|
|
})
|
|
}
|
|
// ANCHOR_END: component
|