mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
27 lines
498 B
Rust
27 lines
498 B
Rust
//! This example shows that autocomplete works in RSX
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
onclick: move |_| {
|
|
}
|
|
// class: "asd",
|
|
// style {
|
|
// media: "Ad",
|
|
// }
|
|
// div {
|
|
|
|
// }
|
|
// {
|
|
// let t = String::new();
|
|
// t.
|
|
// }
|
|
}
|
|
})
|
|
}
|