mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
52 lines
1.4 KiB
Rust
52 lines
1.4 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_hooks::*;
|
|
use dioxus_html as dioxus_elements;
|
|
// use wasm_timer;
|
|
|
|
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
|
|
wasm_bindgen_futures::spawn_local(WebsysRenderer::start(App));
|
|
}
|
|
|
|
static App: FC<()> = |cx| {
|
|
let mut state = use_state(cx, || 0);
|
|
cx.render(rsx! {
|
|
div {
|
|
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 |_| state+=1, "incr" }
|
|
br {}
|
|
button { onclick: move |_| state-=1, "decr" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
};
|