mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 22:50:19 +00:00
29 lines
641 B
Rust
29 lines
641 B
Rust
use dioxus_core as dioxus;
|
|
use dioxus_core::prelude::*;
|
|
use dioxus_html as dioxus_elements;
|
|
use dioxus_web::WebsysRenderer;
|
|
|
|
fn main() {
|
|
wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
|
|
console_error_panic_hook::set_once();
|
|
|
|
log::info!("hello world");
|
|
wasm_bindgen_futures::spawn_local(WebsysRenderer::start(JonsFavoriteCustomApp));
|
|
}
|
|
|
|
fn JonsFavoriteCustomApp(cx: Context<()>) -> DomTree {
|
|
let items = (0..20).map(|f| {
|
|
rsx! {
|
|
li {"{f}"}
|
|
}
|
|
});
|
|
|
|
cx.render(rsx! {
|
|
div {
|
|
"list"
|
|
ul {
|
|
{items}
|
|
}
|
|
}
|
|
})
|
|
}
|