소스 검색

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}" }