Ver código fonte

Doc: change up example a bit

Jonathan Kelley 4 anos atrás
pai
commit
a03497e0d8
1 arquivos alterados com 1 adições e 1 exclusões
  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
 ```rust
 fn Example(ctx: Context<()>) -> VNodes {
 fn Example(ctx: Context<()>) -> VNodes {
-    let (selection, set_selection) = use_state(&ctx, move || "..?");
+    let (selection, set_selection) = use_state(&ctx, || "..?");
 
 
     ctx.render(rsx! {
     ctx.render(rsx! {
         h1 { "Hello, {selection}" }
         h1 { "Hello, {selection}" }