dioxus/packages/web/examples/basic.rs

42 lines
1.3 KiB
Rust
Raw Normal View History

2021-02-24 07:22:05 +00:00
//! Basic example that renders a simple domtree to the browser.
2021-02-23 20:08:23 +00:00
use dioxus_core::prelude::*;
use dioxus_web::*;
fn main() {
2021-02-26 17:58:03 +00:00
// Setup logging
wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
// wasm_logger::init(wasm_logger::Config::with_prefix(
// log::Level::Debug,
// "dioxus_core",
// ));
console_error_panic_hook::set_once();
// Run the app
2021-02-24 07:22:05 +00:00
wasm_bindgen_futures::spawn_local(WebsysRenderer::start(App));
}
2021-02-23 20:08:23 +00:00
2021-02-24 07:22:05 +00:00
static App: FC<()> = |ctx, _| {
2021-02-26 17:58:03 +00:00
log::info!("Ran component");
use dioxus::builder::*;
ctx.view(|b| {
div(b)
.child(text("hello"))
.listeners([on(b, "click", |_| {
//
log::info!("button1 clicked!");
})])
.finish()
2021-02-24 07:22:05 +00:00
})
2021-02-26 17:58:03 +00:00
// ctx.view(html! {
// <div onclick={move |_| log::info!("button1 clicked!")}>
// "Hello"
// // <div class="flex items-center justify-center flex-col">
// // <div class="font-bold text-xl"> "Count is ..." </div>
// // <button onclick={move |_| log::info!("button1 clicked!")}> "increment" </button>
// // <button onclick={move |_| log::info!("button2 clicked!")}> "decrement" </button>
// // </div>
// </div>
// })
2021-02-24 07:22:05 +00:00
};