readme.rs 410 B

123456789101112131415161718
  1. //! Example: README.md showcase
  2. //!
  3. //! The example from the README.md
  4. use dioxus::prelude::*;
  5. fn main() {
  6. dioxus::web::launch(Example)
  7. }
  8. fn Example(cx: Context<()>) -> VNode {
  9. let name = use_state(cx, || "..?");
  10. cx.render(rsx! {
  11. h1 { "Hello, {name}" }
  12. button { "?", onclick: move |_| name.set("world!")}
  13. button { "?", onclick: move |_| name.set("Dioxus 🎉")}
  14. })
  15. }