Browse Source

fix: use_state

Jonathan Kelley 3 years ago
parent
commit
c092bd43ed
1 changed files with 2 additions and 0 deletions
  1. 2 0
      packages/hooks/src/usestate.rs

+ 2 - 0
packages/hooks/src/usestate.rs

@@ -61,6 +61,8 @@ pub fn use_state<'a, T: 'static>(
         }
     });
 
+    hook.current_val = hook.slot.borrow().clone();
+
     (hook.current_val.as_ref(), hook)
 }