dioxus/packages/web/examples/hello.rs

22 lines
582 B
Rust
Raw Normal View History

2021-02-12 21:11:33 +00:00
use dioxus_core::prelude::*;
use dioxus_web::WebsysRenderer;
fn main() {
2021-05-31 22:55:56 +00:00
wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
console_error_panic_hook::set_once();
log::info!("hello world");
2021-02-24 08:51:26 +00:00
wasm_bindgen_futures::spawn_local(WebsysRenderer::start(Example));
2021-02-12 21:11:33 +00:00
}
2021-02-24 08:51:26 +00:00
static Example: FC<()> = |ctx, _props| {
2021-05-31 22:55:56 +00:00
ctx.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 : 18 JUN"
}
}
2021-02-12 21:11:33 +00:00
})
};