hello.rs 278 B

1234567891011121314
  1. use dioxus_core::prelude::*;
  2. use dioxus_web::WebsysRenderer;
  3. fn main() {
  4. wasm_bindgen_futures::spawn_local(WebsysRenderer::start(Example));
  5. }
  6. static Example: FC<()> = |ctx, _props| {
  7. ctx.render(html! {
  8. <div>
  9. "Hello world!"
  10. </div>
  11. })
  12. };