Browse Source

Match `setTimeout` delay with documentation

main
Daniel Gasienica 11 years ago
parent
commit
75264470dd
  1. 2
      tips/08-controlled-input-null-value.md

2
tips/08-controlled-input-null-value.md

@ -20,5 +20,5 @@ React.renderComponent(<input value="hi" />, mountNode);
setTimeout(function() { setTimeout(function() {
React.renderComponent(<input value={null} />, mountNode); React.renderComponent(<input value={null} />, mountNode);
}, 2000); }, 1000);
``` ```

Loading…
Cancel
Save