فهرست منبع

Merge pull request #8 from jkelleyrtp/jk/diff_machine_own_vdom

Doc: change up example a bit
Jonathan Kelley 4 سال پیش
والد
کامیت
e45b6e0aa2
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -9,7 +9,7 @@ Dioxus is a portable, performant, and ergonomic framework for building cross-pla
 
 ```rust
 fn Example(ctx: Context<()>) -> VNodes {
-    let (selection, set_selection) = use_state(&ctx, move || "..?");
+    let (selection, set_selection) = use_state(&ctx, || "..?");
 
     ctx.render(rsx! {
         h1 { "Hello, {selection}" }