mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-19 17:13:12 +00:00
23 lines
484 B
Rust
23 lines
484 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
|