Browse Source

Doc: change up example a bit

Jonathan Kelley 4 years ago
parent
commit
a03497e0d8
1 changed files with 1 additions and 1 deletions
  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}" }