mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
33 lines
885 B
Rust
33 lines
885 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");
|
|
dioxus_web::intern_cache();
|
|
|
|
wasm_bindgen_futures::spawn_local(WebsysRenderer::start(Example));
|
|
}
|
|
|
|
pub static Example: FC<()> = |cx, props| {
|
|
let nodes = (0..500).map(|f| rsx! (li {"div"}));
|
|
cx.render(rsx! {
|
|
div {
|
|
span {
|
|
class: "px-2 py-1 flex w-36 mt-4 items-center text-xs rounded-md font-semibold text-yellow-500 bg-yellow-100"
|
|
"DUE DATE : 189 JUN"
|
|
}
|
|
p {
|
|
"these"
|
|
"are"
|
|
"text"
|
|
"nodes"
|
|
}
|
|
{nodes}
|
|
}
|
|
})
|
|
};
|