mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-19 17:13:12 +00:00
55 lines
1.5 KiB
Rust
55 lines
1.5 KiB
Rust
//! Basic example that renders a simple VNode to the browser.
|
|
|
|
use dioxus::events::on::MouseEvent;
|
|
use dioxus_core as dioxus;
|
|
use dioxus_core::prelude::*;
|
|
use dioxus_core_macro::*;
|
|
use dioxus_hooks::*;
|
|
use dioxus_html as dioxus_elements;
|
|
|
|
use std::future::Future;
|
|
|
|
use std::{pin::Pin, time::Duration};
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
use dioxus_web::*;
|
|
|
|
fn main() {
|
|
// Setup logging
|
|
wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
|
|
console_error_panic_hook::set_once();
|
|
|
|
// Run the app
|
|
dioxus_web::launch(App, |c| c)
|
|
}
|
|
|
|
static App: FC<()> = |(cx, props)| {
|
|
let mut state = use_state(cx, || 0);
|
|
cx.render(rsx! {
|
|
div {
|
|
style: {
|
|
align_items: "center"
|
|
}
|
|
section { class: "py-12 px-4 text-center"
|
|
div { class: "w-full max-w-2xl mx-auto"
|
|
span { class: "text-sm font-semibold"
|
|
"static subtree"
|
|
}
|
|
}
|
|
}
|
|
section { class: "py-12 px-4 text-center"
|
|
div { class: "w-full max-w-2xl mx-auto"
|
|
span { class: "text-sm font-semibold"
|
|
"dynamic subtree {state}"
|
|
}
|
|
div {
|
|
button { onclick: move |e| state+=1, "incr" }
|
|
br {}
|
|
button { onclick: move |e| state-=1, "decr" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
};
|